Hello, I have multiples OSGi bundles that use the same configuration
properties. Now I create a below service for each
bundle:@ObjectClassDefinition(name = "My configuration service",
description = "Configuration for bundle")public @interface MyConfig {
@AttributeDefinition(name = "My API:", description = "API endpoint for
project", type = AttributeType.STRING) String myPropAPI() default
"....";...}@activateprotected void activate(final MyConfig config) {
this.api_endpoint = this.config.myPropAP...