public class ImmutableDitContentRuleRegistry extends java.lang.Object implements DitContentRuleRegistry
| Modifier and Type | Field and Description |
|---|---|
(package private) DitContentRuleRegistry |
immutableDITContentRuleRegistry
The wrapped DitContentRule registry
|
| Constructor and Description |
|---|
ImmutableDitContentRuleRegistry(DitContentRuleRegistry ditContentRuleRegistry)
Creates a new instance of ImmutableDitContentRuleRegistry.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clear the registry from all its content
|
boolean |
contains(java.lang.String oid)
Checks to see if an SchemaObject exists in the registry, by its
OID or name.
|
ImmutableDitContentRuleRegistry |
copy()
Copy the DitContentRuleRegistry
|
DitContentRule |
get(java.lang.String oid)
Gets the SchemaObject associated with a given OID.
|
java.lang.String |
getOidByName(java.lang.String name)
Gets the numericOid for a name/alias if one is associated.
|
java.lang.String |
getSchemaName(java.lang.String oid)
Gets the name of the schema this schema object is associated with.
|
SchemaObjectType |
getType() |
java.util.Iterator<DitContentRule> |
iterator()
Gets an iterator over the registered schema objects in the registry.
|
DitContentRule |
lookup(java.lang.String oid)
Looks up a SchemaObject by its unique Object Identifier or by name.
|
java.util.Iterator<java.lang.String> |
oidsIterator()
Gets an iterator over the registered schema objects'OID in the registry.
|
void |
register(DitContentRule schemaObject)
Registers a new SchemaObject with this registry.
|
void |
renameSchema(java.lang.String originalSchemaName,
java.lang.String newSchemaName)
Modify all the SchemaObject using a schemaName when this name changes.
|
int |
size() |
DitContentRule |
unregister(DitContentRule schemaObject)
Removes the SchemaObject registered with this registry.
|
DitContentRule |
unregister(java.lang.String numericOid)
Removes the SchemaObject registered with this registry, using its
numeric OID.
|
void |
unregisterSchemaElements(java.lang.String schemaName)
Unregisters all SchemaObjects defined for a specific schema from
this registry.
|
DitContentRuleRegistry immutableDITContentRuleRegistry
public ImmutableDitContentRuleRegistry(DitContentRuleRegistry ditContentRuleRegistry)
ditContentRuleRegistry - The wrapped DitContentRule registrypublic ImmutableDitContentRuleRegistry copy()
copy in interface DitContentRuleRegistrycopy in interface SchemaObjectRegistry<DitContentRule>public int size()
size in interface SchemaObjectRegistry<DitContentRule>public boolean contains(java.lang.String oid)
contains in interface SchemaObjectRegistry<DitContentRule>oid - the object identifier or name of the SchemaObjectpublic java.lang.String getOidByName(java.lang.String name)
throws LdapException
getOidByName in interface SchemaObjectRegistry<DitContentRule>name - The name we are looking the oid forLdapException - If the OID can't be foundpublic java.lang.String getSchemaName(java.lang.String oid)
throws LdapException
getSchemaName in interface SchemaObjectRegistry<DitContentRule>oid - the object identifier or the nameLdapException - if the schema object does not existpublic SchemaObjectType getType()
getType in interface SchemaObjectRegistry<DitContentRule>public java.util.Iterator<DitContentRule> iterator()
iterator in interface java.lang.Iterable<DitContentRule>iterator in interface SchemaObjectRegistry<DitContentRule>public DitContentRule lookup(java.lang.String oid) throws LdapException
lookup in interface SchemaObjectRegistry<DitContentRule>oid - the object identifier or nameLdapException - if the SchemaObject does not existpublic java.util.Iterator<java.lang.String> oidsIterator()
oidsIterator in interface SchemaObjectRegistry<DitContentRule>public void register(DitContentRule schemaObject) throws LdapException
register in interface SchemaObjectRegistry<DitContentRule>schemaObject - the SchemaObject to registerLdapException - if the SchemaObject is already registered or
the registration operation is not supportedpublic void renameSchema(java.lang.String originalSchemaName,
java.lang.String newSchemaName)
throws LdapException
renameSchema in interface SchemaObjectRegistry<DitContentRule>originalSchemaName - The original Schema namenewSchemaName - The new Schema nameLdapException - if the schema object does not existpublic DitContentRule unregister(java.lang.String numericOid) throws LdapException
unregister in interface SchemaObjectRegistry<DitContentRule>numericOid - the numeric identifierLdapException - if the numeric identifier is invalidpublic void unregisterSchemaElements(java.lang.String schemaName)
throws LdapException
unregisterSchemaElements in interface SchemaObjectRegistry<DitContentRule>schemaName - the name of the schema whose SchemaObjects will be removed fromLdapExceptionpublic DitContentRule get(java.lang.String oid)
get in interface SchemaObjectRegistry<DitContentRule>oid - The SchemaObject's OID we are looking forpublic void clear()
throws LdapException
clear in interface SchemaObjectRegistry<DitContentRule>LdapExceptionpublic DitContentRule unregister(DitContentRule schemaObject) throws LdapException
unregister in interface SchemaObjectRegistry<DitContentRule>schemaObject - the schemaObject to unregisterLdapException - if the schemaObject can't be unregistered is invalid