if ( aliasIdx.reverseLookup( movedBaseId ) != null )
{
dropAliasIndices( movedBaseId, movedBase );
}
NamingEnumeration aliases = new IndexAssertionEnumeration(
aliasIdx.listIndices( movedBase.toString(), true ),
isBaseDescendant );
while ( aliases.hasMore() )
{
IndexRecord entry = ( IndexRecord ) aliases.next();
dropAliasIndices( entry.getEntryId(), movedBase );
}
}