public class DelegatingModuleRegistry extends java.lang.Object implements WritableModuleRegistry
ModuleRegistry that delegates to several ModuleRegistries, in order.| Constructor and Description |
|---|
DelegatingModuleRegistry(ModuleRegistry... delegates) |
| Modifier and Type | Method and Description |
|---|---|
void |
addDelegate(ModuleRegistry delegate) |
boolean |
delete(ModuleDefinition definition)
Attempt to delete the given definition, if that registry is responsible for it.
|
ModuleDefinition |
findDefinition(java.lang.String name,
ModuleType moduleType)
Lookup a module of the given type with the given name.
|
java.util.List<ModuleDefinition> |
findDefinitions()
Returns all module definitions.
|
java.util.List<ModuleDefinition> |
findDefinitions(ModuleType type)
Searches the registry for the type specified and returns all module definitions that match the type.
|
java.util.List<ModuleDefinition> |
findDefinitions(java.lang.String name)
Searches the registry for the name specified and returns all module definitions that match the name regardless of
module type.
|
boolean |
registerNew(ModuleDefinition definition)
Attempt to register the given definition, if that registry can handle it.
|
public DelegatingModuleRegistry(ModuleRegistry... delegates)
public ModuleDefinition findDefinition(java.lang.String name, ModuleType moduleType)
ModuleRegistryfindDefinition in interface ModuleRegistrynull if this registry does not have such a modulepublic java.util.List<ModuleDefinition> findDefinitions(java.lang.String name)
ModuleRegistryfindDefinitions in interface ModuleRegistryname - The module definition name to be searched.public void addDelegate(ModuleRegistry delegate)
public java.util.List<ModuleDefinition> findDefinitions(ModuleType type)
ModuleRegistryfindDefinitions in interface ModuleRegistrytype - The module type name to be searched.public java.util.List<ModuleDefinition> findDefinitions()
ModuleRegistryfindDefinitions in interface ModuleRegistrypublic boolean delete(ModuleDefinition definition)
WritableModuleRegistrydelete in interface WritableModuleRegistrypublic boolean registerNew(ModuleDefinition definition)
WritableModuleRegistryregisterNew in interface WritableModuleRegistry