}
public boolean groupRenamed( Dn oldName, Dn newName )
{
Element membersElement = ehCache.get( oldName.getNormName() );
if ( membersElement != null )
{
Set<String> members = ( Set<String> ) membersElement.getValue();
ehCache.remove( oldName.getNormName() );
Element cacheElement = new Element( newName.getNormName(), members );
ehCache.put( cacheElement );
if ( IS_DEBUG )
{
LOG.debug( "group cache contents after renaming '{}' :\n{}", oldName.getName(),