*/
public Index<?, Entry, String> getSystemIndex( AttributeType attributeType ) throws IndexNotFoundException
{
if ( attributeType == null )
{
throw new IndexNotFoundException( I18n.err( I18n.ERR_2, attributeType, attributeType ) );
}
String oid = attributeType.getOid();
if ( systemIndices.containsKey( oid ) )
{
return systemIndices.get( oid );
}
throw new IndexNotFoundException( I18n.err( I18n.ERR_2, attributeType, attributeType ) );
}