A component instance may obtain its Component Context object through its activate, modified, and deactivate methods.
Modifier and Type | Method and Description |
---|---|
public void | |
public void | enableComponent(String
The name of a component or name)null to indicate all
components in the bundle.Enables the specified component name. |
public BundleContext | Returns: TheBundleContext of the bundle declares this component.Returns the |
public <S> ComponentInstance | Returns: The Component Instance object for the component instance.Returns the Component Instance object for the component instance associated with this Component Context. |
public Dictionary | Returns: The properties for this Component Context. The Dictionary is read only and cannot be modified.Returns the component properties for this Component Context. |
public ServiceReference | Returns: TheServiceReference object for the component instance or
null if the component instance is not registered as a
service.If the component instance is registered as a service using the
|
public Bundle | Returns: The bundle using the component instance as a service ornull .If the component instance is registered as a service using the
|
public <S> S | Returns: A service object for the referenced service ornull if
the reference cardinality is 0..1 or 0..n and no
bound service is available.The name of a reference as specified in a name)reference
element in this component's description.Returns the service object for the specified reference name. |
public < Type of Service. S> S | Returns: A service object for the referenced service ornull if
the specified ServiceReference is not a bound service for
the specified reference name.The name of a reference as specified in a name, ServiceReference<S> reference
element in this component's description.The reference)ServiceReference to a bound service. This
must be a ServiceReference provided to the component via
the bind or unbind method for the specified reference name.Returns the service object for the specified reference name and
|
public Object[] | Returns: An array of service objects for the referenced service ornull if the reference cardinality is 0..1 or
0..n and no bound service is available. If the reference
cardinality is 0..1 or 1..1 and a bound service
is available, the array will have exactly one element. There is
no guarantee that the service objects in the array will be in any
specific order.The name of a reference as specified in a name)reference
element in this component's description.Returns the service objects for the specified reference name. |
disableComponent | back to summary |
---|---|
public void disableComponent(String name) Disables the specified component name. The specified component name must be in the same bundle as this component. This method must return after changing the enabled state of the specified component name. Any actions that result from this, such as activating or deactivating a component configuration, must occur asynchronously to this method call.
|
enableComponent | back to summary |
---|---|
public void enableComponent(String name) Enables the specified component name. The specified component name must be in the same bundle as this component. This method must return after changing the enabled state of the specified component name. Any actions that result from this, such as activating or deactivating a component configuration, must occur asynchronously to this method call.
|
getBundleContext | back to summary |
---|---|
public BundleContext getBundleContext() Returns the
|
getComponentInstance | back to summary |
---|---|
public <S> ComponentInstance Returns the Component Instance object for the component instance associated with this Component Context.
|
getProperties | back to summary |
---|---|
public Dictionary Returns the component properties for this Component Context.
|
getServiceReference | back to summary |
---|---|
public ServiceReference If the component instance is registered as a service using the
This method will return
|
getUsingBundle | back to summary |
---|---|
public Bundle getUsingBundle() If the component instance is registered as a service using the
This method will return
|
locateService | back to summary |
---|---|
public <S> S locateService(String name) Returns the service object for the specified reference name.
If the cardinality of the reference is
|
locateService | back to summary |
---|---|
public <S> S locateService(String name, ServiceReference<S> reference) Returns the service object for the specified reference name and
|
locateServices | back to summary |
---|---|
public Object[] locateServices(String name) Returns the service objects for the specified reference name.
|