| Changed Methods |
void activate(ComponentContext)
|
Change in signature from ComponentContext to org.osgi.service.component.ComponentContext.
|
Activates this component thread-safely as follows:
- Set the OSGi ComponentContext field
- Call .doActivate()
- Register repositores bound before activation calling
.bindRepository(String, Repository) for each such repository.
|
void deactivate(ComponentContext)
|
Change in signature from ComponentContext to org.osgi.service.component.ComponentContext.
|
Deactivates this component thread-safely as follows:
- Unregister repositores still bound calling
.unbindRepository(String, Object) for each such repository.
|
ComponentContext getComponentContext()
|
Change in return type from ComponentContext to org.osgi.service.component.ComponentContext.
|
Returns the OSGi ComponentContext of this component. |