Whats is the equivalent for "propertyPrivate = true" in r6 annotation ?
Hello folks,
We are migrating from 6.2 to aem 6.4, So we are replacing scr annotations with OSGI R6 annotations,
While migrating Servlets properties I am not able to find equivalent for "propertyPrivate = true".
Below is the annotation Kindly suggest me the equivalent.
@Component
@Service
@Properties({ @Property(name = "service.description", value = "Servlet used to render alerts"),
@Property(name = "sling.servlet.resourceTypes", value = "sling/servlet/default", propertyPrivate = true),
@Property(name = "sling.servlet.selectors", value = "alertbar", propertyPrivate = true),
@Property(name = "sling.servlet.methods", value = { "GET" }) })