| | |
| | | import org.opends.server.core.networkgroups.NetworkGroup; |
| | | import org.opends.server.loggers.debug.DebugLogger; |
| | | import org.opends.server.loggers.debug.DebugTracer; |
| | | import org.opends.server.protocols.asn1.ASN1OctetString; |
| | | import org.opends.server.protocols.ldap.LDAPAttribute; |
| | | import org.opends.server.protocols.ldap.LDAPModification; |
| | | import org.opends.server.types.*; |
| | |
| | | this.entryDN = entryDN; |
| | | this.modifications = modifications; |
| | | |
| | | rawEntryDN = new ASN1OctetString(entryDN.toString()); |
| | | rawEntryDN = ByteString.valueOf(entryDN.toString()); |
| | | |
| | | rawModifications = new ArrayList<RawModification>(modifications.size()); |
| | | for (Modification m : modifications) |