Hi Paulo Paulo Sergio schrieb: > hi guys, > i'm new to felix and i'm developing a simple module that i would like to > make configurable using the felix web console interface. > I've seen some of the modules do that so i wonder if other modules can use > that.
Sure you can. This is based on two OSGi specifications: The Configuration Admin specification, which defines how configuration is provided to configurable services and how to manage the configuration. The other specification used is the Metatype Specification which defines how configuration is described, such that the Web Console can create the input forms. If you are using the Maven SCR Plugin [1] you can add JavaDoc tags to your class and have the Metatype Specification automatically created in your bundle. Of course you also have to care to get the configuration: The basic way is to register a ManagedService (or ManagedServiceFactory) service which is provided with the configuration. Another way is to use Declarative Services where the configuration is provided to the activate(ComponentContext) method. A third way is iPOJO. For more information on Declarative Services see [2]. For a small introduction to Configuration Admin see [3]. > > any help on this? Hope this helps. Regards Felix [1] http://felix.apache.org/site/apache-felix-maven-scr-plugin.html [2] http://felix.apache.org/site/apache-felix-service-component-runtime.html [3] http://felix.apache.org/site/apache-felix-configuration-admin-service.html --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

