I am interested in using OSGI as a means of managing plugins for a project. That is there can be many implemenators of my interface, each appearing in its own / separate OSGI bundle with the implementation class exported...
|
Declarative Service should be the way to go. You can declare your interface as a service
Each implementation of that interface can define Bundle activation and de-activation methods. Then define another service which depends on your first service:
That service will detect and list all your concrete instances of your first service and deal with them as you intent to. See the Eclipse Extensions and Declarative Services question for more details. The presentation: Component Oriented Development in OSGi with Declarative Services, Spring Dynamic Modules and Apache iPOJO, from EclipseCON2009, will provide you with a concrete example. |
|||||
|
|
This can be done declaratively (like VonC) has detailed, or dynamically at runtime via the standard service registry. Any implementer can simply register their implementations as a service and consumers can get them from the registry, which is pretty basic OSGi stuff. The services can also be registered with properties, so consumers can use these properties to distinguish between implementations when looking up the service. |
|||
|