Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[higgins-dev] OSGi configuration API


At the last F2F, the relationship between the Higgins configuration component and OSGi bundles was brought up.  For informational purposes, I will point out that OSGi Service Platform has a Configuration API (since Release 2). 

A rough correspondence would be:

IConfigurableComponent ~ ManagedService

They also have:

(1) Configuration interface, which holds settings in a Dictionary (not Map).
(2) ConfigurationAdmin interface, which keeps track of Configurations and associates them with ManagedServices and/or ManagedServiceFactories.
(3) ManagedServiceFactory, which creates ManagedServices.

A ManagedService has a persistent ID, and the Configuration object for that service has the same PID.  When a Configuration object is changed, or a new one created, the ConfigurationAdmin object calls the updated() method of the ManagedService (with the same PID) with the new configuration settings.

I'm not proposing that we adopt this API, because we're not tied to the OSGi platform.  But I wanted to offer it up for discussion, to see what, if anything, we should either adopt or interface to.

http://www2.osgi.org/javadoc/r4/org/osgi/service/cm/package-summary.html

...Greg



Back to the top