|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.directory.api.ldap.model.schema.registries.DefaultSchemaObjectRegistry<T>
public abstract class DefaultSchemaObjectRegistry<T extends SchemaObject>
Common schema object registry interface.
| Field Summary | |
|---|---|
protected Map<String,T> |
byName
a map of SchemaObject looked up by name |
protected OidRegistry<T> |
oidRegistry
the global OID Registry |
protected SchemaObjectType |
schemaObjectType
The SchemaObject type, used by the toString() method |
| Constructor Summary | |
|---|---|
protected |
DefaultSchemaObjectRegistry(SchemaObjectType schemaObjectType,
OidRegistry<T> oidRegistry)
Creates a new DefaultSchemaObjectRegistry instance. |
| Method Summary | |
|---|---|
void |
clear()
Clear the registry from all its content |
boolean |
contains(String oid)
Checks to see if an SchemaObject exists in the registry, by its OID or name. |
SchemaObjectRegistry<T> |
copy(SchemaObjectRegistry<T> original)
|
T |
get(String oid)
Gets the SchemaObject associated with a given OID. |
String |
getOidByName(String name)
Gets the numericOid for a name/alias if one is associated. |
String |
getSchemaName(String oid)
Gets the name of the schema this schema object is associated with. |
SchemaObjectType |
getType()
|
Iterator<T> |
iterator()
Gets an iterator over the registered schema objects in the registry. |
T |
lookup(String oid)
Looks up a SchemaObject by its unique Object Identifier or by name. |
Iterator<String> |
oidsIterator()
Gets an iterator over the registered schema objects'OID in the registry. |
void |
register(T schemaObject)
Registers a new SchemaObject with this registry. |
void |
renameSchema(String originalSchemaName,
String newSchemaName)
Modify all the SchemaObject using a schemaName when this name changes. |
int |
size()
|
String |
toString()
|
T |
unregister(String numericOid)
Removes the SchemaObject registered with this registry, using its numeric OID. |
T |
unregister(T schemaObject)
Removes the SchemaObject registered with this registry. |
void |
unregisterSchemaElements(String schemaName)
Unregisters all SchemaObjects defined for a specific schema from this registry. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.apache.directory.api.ldap.model.schema.registries.SchemaObjectRegistry |
|---|
copy |
| Field Detail |
|---|
protected Map<String,T extends SchemaObject> byName
protected SchemaObjectType schemaObjectType
protected OidRegistry<T extends SchemaObject> oidRegistry
| Constructor Detail |
|---|
protected DefaultSchemaObjectRegistry(SchemaObjectType schemaObjectType,
OidRegistry<T> oidRegistry)
| Method Detail |
|---|
public boolean contains(String oid)
contains in interface SchemaObjectRegistry<T extends SchemaObject>oid - the object identifier or name of the SchemaObject
public String getSchemaName(String oid)
throws LdapException
getSchemaName in interface SchemaObjectRegistry<T extends SchemaObject>oid - the object identifier or the name
LdapException - if the schema object does not exist
public void renameSchema(String originalSchemaName,
String newSchemaName)
renameSchema in interface SchemaObjectRegistry<T extends SchemaObject>originalSchemaName - The original Schema namenewSchemaName - The new Schema namepublic Iterator<T> iterator()
iterator in interface Iterable<T extends SchemaObject>iterator in interface SchemaObjectRegistry<T extends SchemaObject>public Iterator<String> oidsIterator()
oidsIterator in interface SchemaObjectRegistry<T extends SchemaObject>
public T lookup(String oid)
throws LdapException
lookup in interface SchemaObjectRegistry<T extends SchemaObject>oid - the object identifier or name
LdapException - if the SchemaObject does not exist
public void register(T schemaObject)
throws LdapException
register in interface SchemaObjectRegistry<T extends SchemaObject>schemaObject - the SchemaObject to register
LdapException - if the SchemaObject is already registered or
the registration operation is not supported
public T unregister(String numericOid)
throws LdapException
unregister in interface SchemaObjectRegistry<T extends SchemaObject>numericOid - the numeric identifier
LdapException - if the numeric identifier is invalid
public T unregister(T schemaObject)
throws LdapException
unregister in interface SchemaObjectRegistry<T extends SchemaObject>schemaObject - the schemaObject to unregister
LdapException - if the schemaObject can't be unregistered is invalid
public void unregisterSchemaElements(String schemaName)
throws LdapException
unregisterSchemaElements in interface SchemaObjectRegistry<T extends SchemaObject>schemaName - the name of the schema whose SchemaObjects will be removed from
LdapException
public String getOidByName(String name)
throws LdapException
getOidByName in interface SchemaObjectRegistry<T extends SchemaObject>name - The name we are looking the oid for
LdapException - If the OID can't be foundpublic SchemaObjectRegistry<T> copy(SchemaObjectRegistry<T> original)
public T get(String oid)
get in interface SchemaObjectRegistry<T extends SchemaObject>oid - The SchemaObject's OID we are looking for
public SchemaObjectType getType()
getType in interface SchemaObjectRegistry<T extends SchemaObject>public int size()
size in interface SchemaObjectRegistry<T extends SchemaObject>public String toString()
toString in class ObjectObject.toString()public void clear()
clear in interface SchemaObjectRegistry<T extends SchemaObject>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||