Class ImmutableMatchingRuleRegistry
- java.lang.Object
-
- org.apache.directory.api.ldap.model.schema.registries.ImmutableMatchingRuleRegistry
-
- All Implemented Interfaces:
Iterable<MatchingRule>,MatchingRuleRegistry,SchemaObjectRegistry<MatchingRule>
public class ImmutableMatchingRuleRegistry extends Object implements MatchingRuleRegistry
An immutable wrapper of the MatchingRule registry.- Author:
- Apache Directory Project
-
-
Field Summary
Fields Modifier and Type Field Description (package private) MatchingRuleRegistryimmutableMatchingRuleRegistryThe wrapped MatchingRule registry
-
Constructor Summary
Constructors Constructor Description ImmutableMatchingRuleRegistry(MatchingRuleRegistry matchingRuleRegistry)Creates a new instance of ImmutableMatchingRuleRegistry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clear the registry from all its contentbooleancontains(String oid)Checks to see if an SchemaObject exists in the registry, by its OID or name.ImmutableMatchingRuleRegistrycopy()Copy the MatchingRuleRegistryMatchingRuleget(String oid)Gets the SchemaObject associated with a given OID.StringgetOidByName(String name)Gets the numericOid for a name/alias if one is associated.StringgetSchemaName(String oid)Gets the name of the schema this schema object is associated with.SchemaObjectTypegetType()Iterator<MatchingRule>iterator()Gets an iterator over the registered schema objects in the registry.MatchingRulelookup(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.voidregister(MatchingRule schemaObject)Registers a new SchemaObject with this registry.voidrenameSchema(String originalSchemaName, String newSchemaName)Modify all the SchemaObject using a schemaName when this name changes.intsize()MatchingRuleunregister(String numericOid)Removes the SchemaObject registered with this registry, using its numeric OID.MatchingRuleunregister(MatchingRule schemaObject)Removes the SchemaObject registered with this registry.voidunregisterSchemaElements(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, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
immutableMatchingRuleRegistry
MatchingRuleRegistry immutableMatchingRuleRegistry
The wrapped MatchingRule registry
-
-
Constructor Detail
-
ImmutableMatchingRuleRegistry
public ImmutableMatchingRuleRegistry(MatchingRuleRegistry matchingRuleRegistry)
Creates a new instance of ImmutableMatchingRuleRegistry.- Parameters:
matchingRuleRegistry- The wrapped MatchingRule registry
-
-
Method Detail
-
copy
public ImmutableMatchingRuleRegistry copy()
Copy the MatchingRuleRegistry- Specified by:
copyin interfaceMatchingRuleRegistry- Specified by:
copyin interfaceSchemaObjectRegistry<MatchingRule>- Returns:
- The copied registry
-
size
public int size()
- Specified by:
sizein interfaceSchemaObjectRegistry<MatchingRule>- Returns:
- The number of AttributeType stored
-
contains
public boolean contains(String oid)
Checks to see if an SchemaObject exists in the registry, by its OID or name.- Specified by:
containsin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
oid- the object identifier or name of the SchemaObject- Returns:
- true if a SchemaObject definition exists for the oid, false otherwise
-
getOidByName
public String getOidByName(String name) throws LdapException
Gets the numericOid for a name/alias if one is associated. To prevent lookup failures due to case variance in the name, a failure to lookup the OID, will trigger a lookup using a lower cased version of the name and the name that failed to match will automatically be associated with the OID.- Specified by:
getOidByNamein interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
name- The name we are looking the oid for- Returns:
- The numericOID associated with this name
- Throws:
LdapException- If the OID can't be found
-
getSchemaName
public String getSchemaName(String oid) throws LdapException
Gets the name of the schema this schema object is associated with.- Specified by:
getSchemaNamein interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
oid- the object identifier or the name- Returns:
- the schema name
- Throws:
LdapException- if the schema object does not exist
-
getType
public SchemaObjectType getType()
- Specified by:
getTypein interfaceSchemaObjectRegistry<MatchingRule>- Returns:
- the type
-
iterator
public Iterator<MatchingRule> iterator()
Gets an iterator over the registered schema objects in the registry.- Specified by:
iteratorin interfaceIterable<MatchingRule>- Specified by:
iteratorin interfaceSchemaObjectRegistry<MatchingRule>- Returns:
- an Iterator of homogeneous schema objects
-
lookup
public MatchingRule lookup(String oid) throws LdapException
Looks up a SchemaObject by its unique Object Identifier or by name.- Specified by:
lookupin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
oid- the object identifier or name- Returns:
- the SchemaObject instance for the id
- Throws:
LdapException- if the SchemaObject does not exist
-
oidsIterator
public Iterator<String> oidsIterator()
Gets an iterator over the registered schema objects'OID in the registry.- Specified by:
oidsIteratorin interfaceSchemaObjectRegistry<MatchingRule>- Returns:
- an Iterator of OIDs
-
register
public void register(MatchingRule schemaObject) throws LdapException
Registers a new SchemaObject with this registry.- Specified by:
registerin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
schemaObject- the SchemaObject to register- Throws:
LdapException- if the SchemaObject is already registered or the registration operation is not supported
-
renameSchema
public void renameSchema(String originalSchemaName, String newSchemaName) throws LdapException
Modify all the SchemaObject using a schemaName when this name changes.- Specified by:
renameSchemain interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
originalSchemaName- The original Schema namenewSchemaName- The new Schema name- Throws:
LdapException- if the schema object does not exist
-
unregister
public MatchingRule unregister(String numericOid) throws LdapException
Removes the SchemaObject registered with this registry, using its numeric OID.- Specified by:
unregisterin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
numericOid- the numeric identifier- Returns:
- The unregistred schema object
- Throws:
LdapException- if the numeric identifier is invalid
-
unregisterSchemaElements
public void unregisterSchemaElements(String schemaName) throws LdapException
Unregisters all SchemaObjects defined for a specific schema from this registry.- Specified by:
unregisterSchemaElementsin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
schemaName- the name of the schema whose SchemaObjects will be removed from- Throws:
LdapException- If we had a problem while unregistering the schema
-
get
public MatchingRule get(String oid)
Gets the SchemaObject associated with a given OID.- Specified by:
getin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
oid- The SchemaObject's OID we are looking for- Returns:
- The SchemaObject, if any. Null otherwise
-
clear
public void clear() throws LdapExceptionClear the registry from all its content- Specified by:
clearin interfaceSchemaObjectRegistry<MatchingRule>- Throws:
LdapException- If we had a failure while clearing the registry
-
unregister
public MatchingRule unregister(MatchingRule schemaObject) throws LdapException
Removes the SchemaObject registered with this registry.- Specified by:
unregisterin interfaceSchemaObjectRegistry<MatchingRule>- Parameters:
schemaObject- the schemaObject to unregister- Returns:
- The unregistred schema object
- Throws:
LdapException- if the schemaObject can't be unregistered is invalid
-
-