Package | Description |
---|---|
org.osgi.framework |
Framework Package Version 1.5.
|
Modifier and Type | Method | Description |
---|---|---|
ServiceRegistration |
BundleContext.registerService(java.lang.String[] clazzes,
java.lang.Object service,
java.util.Dictionary properties) |
Registers the specified service object with the specified properties
under the specified class names into the Framework.
|
ServiceRegistration |
BundleContext.registerService(java.lang.String clazz,
java.lang.Object service,
java.util.Dictionary properties) |
Registers the specified service object with the specified properties
under the specified class name with the Framework.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.Object |
ServiceFactory.getService(Bundle bundle,
ServiceRegistration registration) |
Creates a new service object.
|
void |
ServiceFactory.ungetService(Bundle bundle,
ServiceRegistration registration,
java.lang.Object service) |
Releases a service object.
|