IN the below code what does "webconsole.configurationFactory.nameHint =" + "Site Map for: {externalizer.domain}, on resource types: [{sling.servlet.resourceTypes}]" mean?
@Component(service = Servlet.class,
property = {
"sling.servlet.methods=GET",
Constants.SERVICE_DESCRIPTION + "= Sitemap Index Servlet",
"sling.servlet.extensions=" + "xml",
"webconsole.configurationFactory.nameHint =" + "Site Map for: {externalizer.domain}, on resource types: [{sling.servlet.resourceTypes}]"
})
Solved! Go to Solution.
Hi @KKeerthi,
In general webconsole.configurationFactory.nameHint allows you to display in OSGi console values set in specific OSGi configuration. In your example values of properties externalizer.domain and sling.servlet.resourceTypes will be shown on GUI level.
Please also explore official documentation: https://felix.apache.org/documentation/subprojects/apache-felix-web-console.html#_configuration_fact...
Hi @KKeerthi,
In general webconsole.configurationFactory.nameHint allows you to display in OSGi console values set in specific OSGi configuration. In your example values of properties externalizer.domain and sling.servlet.resourceTypes will be shown on GUI level.
Please also explore official documentation: https://felix.apache.org/documentation/subprojects/apache-felix-web-console.html#_configuration_fact...
Thank You.