I am replacing some deprecated Javadoc annotation in code I am unfamiliar with. Most javadoc annotations easily translate to org.apache.felix.scr.annotations, but I'm not sure how to translate this one:
/**
* @scr.property
* nameRef="org.apache.sling.auth.core.spi.AuthenticationHandler.PATH_PROPERTY"
* values.0="/"
*/
What @Property annotation does the above translate to--particularly the nameRef portion?
@Property( ???)