|
Page Created :
FELIX :
Apache Felix Configuration Admin Service
Apache Felix Configuration Admin Service has been created by Felix Meschberger (Jul 25, 2008). Content:Configuration Admin ServiceTHe OSGi Componendium Configuration Admin Service specifies a service, which allows for easy management of configuration data for configurable components. Basicaly configuration is a list of name-value pairs. Configuration is managed by management applications by asking the Configuration Admin Service for such configuration. After updating the configuration, it is sent back to the Configuration Admin Service. The Configuration Admin Service is like a central hub, which cares for persisting this configuration and also for distributing the configuration to interested parties. One class of such parties are the components to be configured. These are registered as ManagedService services. There is also a notion of ManagedServiceFactory, which allows for multiple configurations of the same kind to be applied. For more information, I suggest you read Chapter 104, Configuration Admin Service Specification, of the OSGi Compendium Services Specification book. IMHO this is worth reading. For a starter this page sets out to describe how you can create a component, which is interested in some configuration. As such this page is at its very beginning just highlighting the simplest of all cases: A single component being interested in its configuration. ManagedService ExampleConsider you have requirement for some configuration, say the line length of a pretty printer. You want to have this configurable through configuration admin. You need the following parts:
The PID is just a string, which must be globally unique. Assuming a simple case where your PrettyPrinter configurator receives the configuration has a unique class name, you may well use that name. So lets assume, our ManagedService is called org.sample.PrettyPrinterConfigurator and that name is also used as the PID. For more information on the Service PID, refer to Section 104.3, The Persistent Identity of the OSGi Compendium Services Specification. The class would be: PrettyPrinterConfigurator.java package org.sample; class PrettyPrinterConfigurator implements ManagedService { public void update(Dictionary props) throws ConfigurationException { if (props == null) { // no configuration from configuration admin // or old configuration has been deleted } else { // apply configuration from config admin } } }
|
Unsubscribe or edit your notifications preferences
