<S> ServiceRegistration<S> |
BundleContext.registerService(java.lang.Class<S> clazz,
ServiceFactory<S> factory,
java.util.Dictionary<java.lang.String,?> properties) |
Registers the specified service factory object with the specified
properties under the name of the specified class with the Framework.
|
<S> ServiceRegistration<S> |
BundleContext.registerService(java.lang.Class<S> clazz,
S service,
java.util.Dictionary<java.lang.String,?> properties) |
Registers the specified service object with the specified properties
under the name of the specified class with the Framework.
|
ServiceRegistration<?> |
BundleContext.registerService(java.lang.String[] clazzes,
java.lang.Object service,
java.util.Dictionary<java.lang.String,?> 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<java.lang.String,?> properties) |
Registers the specified service object with the specified properties
under the specified class name with the Framework.
|