/**
* Registers the security marker in the OSGi registry.
*/
private void publishSecurityMarker() {
Dictionary<String, String> securityProperties = new Hashtable<String, String>();
bundleCtx.registerService(Security.class.getName(), new Security() {
}, securityProperties);
}