public class DefaultComponent extends Object implements Component, Adaptable
Constructor and Description |
---|
DefaultComponent() |
Modifier and Type | Method and Description |
---|---|
void |
activate(ComponentContext context)
Activates the component.
|
void |
applicationStarted(ComponentContext context)
Notify the component that Nuxeo Framework finished starting all Nuxeo
bundles.
|
void |
deactivate(ComponentContext context)
Deactivates the component.
|
<T> T |
getAdapter(Class<T> adapter)
Returns an object which is an instance of the given class
associated with this object.
|
int |
getApplicationStartedOrder()
The component notification order for
Component.applicationStarted(org.nuxeo.runtime.model.ComponentContext) . |
Long |
getLastModified()
Returns the last modification timestamp or null if unknown.
|
void |
registerContribution(Object contribution,
String extensionPoint,
ComponentInstance contributor) |
void |
registerExtension(Extension extension)
Registers the given extension.
|
void |
setLastModified(Long lastModified)
Sets the last modified date.
|
void |
unregisterContribution(Object contribution,
String extensionPoint,
ComponentInstance contributor) |
void |
unregisterExtension(Extension extension)
Unregisters the given extension.
|
public void activate(ComponentContext context) throws Exception
Component
This method is called by the runtime when a component is activated.
public void deactivate(ComponentContext context) throws Exception
Component
This method is called by the runtime when a component is deactivated.
deactivate
in interface Component
context
- the runtime contextException
- if an error occurs during activationpublic void registerExtension(Extension extension) throws Exception
Extensible
registerExtension
in interface Extensible
extension
- the extension to registerException
- if any error occurspublic void unregisterExtension(Extension extension) throws Exception
Extensible
unregisterExtension
in interface Extensible
extension
- the extension to unregisterException
- if any error occurspublic void registerContribution(Object contribution, String extensionPoint, ComponentInstance contributor) throws Exception
Exception
public void unregisterContribution(Object contribution, String extensionPoint, ComponentInstance contributor) throws Exception
Exception
public <T> T getAdapter(Class<T> adapter)
Adaptable
null
if
no such object can be found.getAdapter
in interface Adaptable
adapter
- the adapter class to look upnull
if this object does not
have an adapter for the given classpublic int getApplicationStartedOrder()
Component
Component.applicationStarted(org.nuxeo.runtime.model.ComponentContext)
.
Components are notified in increasing order. Order 1000 is the default order for components that don't care. Order 100 is the repository initialization.
getApplicationStartedOrder
in interface Component
public void applicationStarted(ComponentContext context) throws Exception
Component
applicationStarted
in interface Component
Exception
public Long getLastModified()
TimestampedService
This method is useful for third-party code implementing caching on resources held by the component/service.
getLastModified
in interface TimestampedService
TimestampedService.setLastModified(Long)
public void setLastModified(Long lastModified)
TimestampedService
This method is supposed to be called whenever the component/service resources or state changes.
setLastModified
in interface TimestampedService
TimestampedService.getLastModified()
Copyright © 2013 Nuxeo SA. All Rights Reserved.