public interface RegistryRepository
Registry.
The registries are identified by their names.| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Removes all Registry from the repository.
|
void |
createOrUpdate(Registry registry)
Creates or updates Registry.
|
void |
delete(java.lang.String name)
Deletes a
Registry instance identified by it's name. |
Registry |
get(java.lang.String registryName)
Returns the registry with the specifed name, or null if no such registry exists.
|
java.util.Set<java.lang.String> |
getKnownNames()
Returns the names of all known Registry instances.
|
void createOrUpdate(Registry registry)
registry - the Registry instance.void delete(java.lang.String name)
Registry instance identified by it's name.name - the name of the deleted registry.java.util.Set<java.lang.String> getKnownNames()
Registry get(java.lang.String registryName)
void clear()