DN userName = new DN( "uid=" + uid + ",ou=users,ou=system" );
adminContext.createSubcontext( entryRdn, testEntry );
// delete the newly created context as the user
DirContext userContext = getContextAs( userName, password );
userContext.destroySubcontext( entryRdn );
return true;
}
catch ( LdapNoPermissionException e )
{