blob: 77cb249d56b3c13c0a0aa8e97f9c10db1e677794 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.shared.ldap.model.schema.registries;
import java.util.Iterator;
import java.util.Map;
import org.apache.directory.shared.ldap.model.exception.LdapException;
import org.apache.directory.shared.ldap.model.schema.MutableAttributeTypeImpl;
import org.apache.directory.shared.ldap.model.schema.normalizers.OidNormalizer;
/**
* An AttributeType registry service interface.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public interface AttributeTypeRegistry extends SchemaObjectRegistry<MutableAttributeTypeImpl>, Iterable<MutableAttributeTypeImpl>
{
/**
* Gets an oid/name to normalizer mapping used to normalize distinguished
* names.
*
* @return a map of OID Strings to OidNormalizer instances
*/
Map<String, OidNormalizer> getNormalizerMapping();
/**
* Quick lookup to see if an attribute has descendants.
*
* @param ancestorId the name alias or OID for an attributeType
* @return an Iterator over the AttributeTypes which have the ancestor
* within their superior chain to the top
* @throws LdapException if the ancestor attributeType cannot be
* discerned from the ancestorId supplied
*/
boolean hasDescendants( String ancestorId ) throws LdapException;
/**
* Quick lookup to see if an attribute has descendants.
*
* @param ancestor the attributeType we are looking for
* @return an Iterator over the AttributeTypes which have the ancestor
* within their superior chain to the top
* @throws LdapException if the ancestor attributeType cannot be
* discerned from the ancestorId supplied
*/
boolean hasDescendants( MutableAttributeTypeImpl ancestor ) throws LdapException;
/**
* Get's an iterator over the set of descendant attributeTypes for
* some ancestor's name alias or their OID.
*
* @param ancestorId the name alias or OID for an attributeType
* @return an Iterator over the AttributeTypes which have the ancestor
* within their superior chain to the top
* @throws LdapException if the ancestor attributeType cannot be
* discerned from the ancestorId supplied
*/
Iterator<MutableAttributeTypeImpl> descendants( String ancestorId ) throws LdapException;
/**
* Get's an iterator over the set of descendant attributeTypes for
* some ancestor's name alias or their OID.
*
* @param ancestor the AttributeType we are looking for
* @return an Iterator over the AttributeTypes which have the ancestor
* within their superior chain to the top
* @throws LdapException if the ancestor attributeType cannot be
* discerned from the ancestorId supplied
*/
Iterator<MutableAttributeTypeImpl> descendants( MutableAttributeTypeImpl ancestor ) throws LdapException;
/**
* Store the AttributeType into a map associating an AttributeType to its
* descendants.
*
* @param attributeType The attributeType to register
* @throws org.apache.directory.shared.ldap.model.exception.LdapException If something went wrong
*/
void registerDescendants( MutableAttributeTypeImpl attributeType, MutableAttributeTypeImpl ancestor ) throws LdapException;
/**
* Remove the AttributeType from the map associating an AttributeType to its
* descendants.
*
* @param attributeType The attributeType to unregister
* @param ancestor its ancestor
* @throws LdapException If something went wrong
*/
void unregisterDescendants( MutableAttributeTypeImpl attributeType, MutableAttributeTypeImpl ancestor ) throws LdapException;
/**
* Add a new Oid/Normalizer couple in the OidNormalizer map
*/
void addMappingFor( MutableAttributeTypeImpl attributeType ) throws LdapException;
/**
* Remove a new Oid/Normalizer couple in the OidNormalizer map
*/
void removeMappingFor( MutableAttributeTypeImpl attributeType ) throws LdapException;
/**
* Copy the AttributeTypeRegistry
*/
AttributeTypeRegistry copy();
}