Interface ServiceRegistration<S>
-
- Type Parameters:
S
- Type of Service.
@ProviderType public interface ServiceRegistration<S>
A registered service.The Framework returns a
ServiceRegistration
object when aBundleContext.registerService
method invocation is successful. TheServiceRegistration
object is for the private use of the registering bundle and should not be shared with other bundles.The
ServiceRegistration
object may be used to update the properties of the service or to unregister the service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceReference<S>
getReference()
Returns aServiceReference
object for a service being registered.void
setProperties(java.util.Dictionary<java.lang.String,?> properties)
Updates the properties associated with a service.void
unregister()
Unregisters a service.
-
-
-
Method Detail
-
getReference
ServiceReference<S> getReference()
Returns aServiceReference
object for a service being registered.The
ServiceReference
object may be shared with other bundles.- Returns:
ServiceReference
object.- Throws:
java.lang.IllegalStateException
- If thisServiceRegistration
object has already been unregistered.
-
setProperties
void setProperties(java.util.Dictionary<java.lang.String,?> properties)
Updates the properties associated with a service.The
Constants.OBJECTCLASS
,Constants.SERVICE_BUNDLEID
,Constants.SERVICE_ID
andConstants.SERVICE_SCOPE
keys cannot be modified by this method. These values are set by the Framework when the service is registered in the OSGi environment.The following steps are required to modify service properties:
- The service's properties are replaced with the provided properties.
- A service event of type
ServiceEvent.MODIFIED
is fired.
- Parameters:
properties
- The properties for this service. SeeConstants
for a list of standard service property keys. Changes should not be made to this object after calling this method. To update the service's properties this method should be called again.- Throws:
java.lang.IllegalStateException
- If thisServiceRegistration
object has already been unregistered.java.lang.IllegalArgumentException
- Ifproperties
contains case variants of the same key name.
-
unregister
void unregister()
Unregisters a service. Remove aServiceRegistration
object from the Framework service registry. AllServiceReference
objects associated with thisServiceRegistration
object can no longer be used to interact with the service once unregistration is complete.The following steps are required to unregister a service:
- The service is removed from the Framework service registry so that it can no longer be obtained.
- A service event of type
ServiceEvent.UNREGISTERING
is fired so that bundles using this service can release their use of the service. Once delivery of the service event is complete, theServiceReference
objects for the service may no longer be used to get a service object for the service. - For each bundle whose use count for this service is greater than
zero:
- The bundle's use count for this service is set to zero.
- If the service was registered with a
ServiceFactory
object, theServiceFactory.ungetService
method is called to release the service object for the bundle.
- Throws:
java.lang.IllegalStateException
- If thisServiceRegistration
object has already been unregistered.- See Also:
BundleContext.ungetService(ServiceReference)
,ServiceFactory.ungetService(Bundle, ServiceRegistration, Object)
-
-