id = schemaManager.getAttributeTypeRegistry().getOidByName( id );
}
catch ( NamingException e )
{
LOG.error( I18n.err( I18n.ERR_1, id ), e.getLocalizedMessage() );
throw new IndexNotFoundException( I18n.err( I18n.ERR_1, id ), id, e );
}
if ( userIndices.containsKey( id ) )
{
return userIndices.get( id );
}
if ( systemIndices.containsKey( id ) )
{
return systemIndices.get( id );
}
throw new IndexNotFoundException( I18n.err( I18n.ERR_2, id, name ) );
}