| | |
| | | * |
| | | * |
| | | * Copyright 2006-2009 Sun Microsystems, Inc. |
| | | * Portions Copyright 2011-2013 ForgeRock AS |
| | | * Portions Copyright 2011-2014 ForgeRock AS |
| | | */ |
| | | package org.opends.server.protocols.internal; |
| | | |
| | |
| | | operationalAttrs.put(privType, attrList); |
| | | |
| | | |
| | | DN internalUserDN = DN.decode(fullDNString); |
| | | DN internalUserDN = DN.valueOf(fullDNString); |
| | | Entry internalUserEntry = |
| | | new Entry(internalUserDN, objectClasses, userAttrs, |
| | | operationalAttrs); |
| | |
| | | private static AuthenticationInfo getAuthInfoForDN(DN userDN) |
| | | throws DirectoryException |
| | | { |
| | | if ((userDN == null) || userDN.isNullDN()) |
| | | if ((userDN == null) || userDN.isRootDN()) |
| | | { |
| | | return new AuthenticationInfo(); |
| | | } |