public class RepositoryManagerImpl extends DefaultComponent implements RepositoryManager
Modifier and Type | Field and Description |
---|---|
static ComponentName |
NAME |
Constructor and Description |
---|
RepositoryManagerImpl() |
Modifier and Type | Method and Description |
---|---|
void |
activate(ComponentContext context)
Activates the component.
|
void |
addRepository(Repository repository)
Registers a new repository.
|
void |
clear()
Unregisters all repositories.
|
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.
|
Repository |
getDefaultRepository()
Gets the default repository.
|
Collection<Repository> |
getRepositories()
Gets all registered repositories.
|
Repository |
getRepository(String name)
Gets a repository by its name.
|
void |
registerContribution(Object contribution,
String extensionPoint,
ComponentInstance contributor) |
void |
removeRepository(String name)
Removes a registered repository.
|
void |
unregisterContribution(Object contribution,
String extensionPoint,
ComponentInstance contributor) |
applicationStarted, getApplicationStartedOrder, getLastModified, registerExtension, setLastModified, unregisterExtension
public static final ComponentName NAME
public void addRepository(Repository repository)
RepositoryManager
addRepository
in interface RepositoryManager
repository
- the repository to registerpublic Collection<Repository> getRepositories()
RepositoryManager
getRepositories
in interface RepositoryManager
public Repository getRepository(String name)
RepositoryManager
getRepository
in interface RepositoryManager
name
- the repository namepublic void removeRepository(String name)
RepositoryManager
Do nothing if the repository is not registered.
removeRepository
in interface RepositoryManager
name
- the repository name to unregisterpublic void clear()
RepositoryManager
clear
in interface RepositoryManager
public Repository getDefaultRepository()
RepositoryManager
If there is not a default repository returns the first registered. repository
This is a convenient method to get the repository for application having a single repository.
getDefaultRepository
in interface RepositoryManager
public void activate(ComponentContext context) throws Exception
Component
This method is called by the runtime when a component is activated.
activate
in interface Component
activate
in class DefaultComponent
context
- the runtime contextException
- if an error occurs during activationpublic void deactivate(ComponentContext context) throws Exception
Component
This method is called by the runtime when a component is deactivated.
deactivate
in interface Component
deactivate
in class DefaultComponent
context
- the runtime contextException
- if an error occurs during activationpublic void registerContribution(Object contribution, String extensionPoint, ComponentInstance contributor)
registerContribution
in class DefaultComponent
public void unregisterContribution(Object contribution, String extensionPoint, ComponentInstance contributor)
unregisterContribution
in class DefaultComponent
public <T> T getAdapter(Class<T> adapter)
Adaptable
null
if
no such object can be found.getAdapter
in interface Adaptable
getAdapter
in class DefaultComponent
adapter
- the adapter class to look upnull
if this object does not
have an adapter for the given classCopyright © 2013 Nuxeo SA. All Rights Reserved.