From 44aad3f84d2a820094f3b5e73722778edc8c23f5 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 24 Apr 2007 22:40:57 +0000
Subject: [PATCH] Make several significant changes to the OpenDS code base, including:
---
opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java b/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java
index b608b03..a7a41b6 100644
--- a/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java
+++ b/opends/src/dsml/org/opends/dsml/protocol/DSMLAddOperation.java
@@ -37,10 +37,11 @@
import org.opends.server.protocols.ldap.AddRequestProtocolOp;
import org.opends.server.protocols.ldap.AddResponseProtocolOp;
import org.opends.server.protocols.ldap.LDAPAttribute;
-import org.opends.server.protocols.ldap.LDAPException;
import org.opends.server.protocols.ldap.LDAPMessage;
import org.opends.server.protocols.ldap.ProtocolOp;
import org.opends.server.tools.LDAPConnection;
+import org.opends.server.types.LDAPException;
+import org.opends.server.types.RawAttribute;
@@ -99,7 +100,7 @@
addResponse.setRequestID(requestID);
ASN1OctetString dnStr = new ASN1OctetString(addRequest.getDn());
- ArrayList<LDAPAttribute> attributes = new ArrayList<LDAPAttribute>();
+ ArrayList<RawAttribute> attributes = new ArrayList<RawAttribute>();
List<DsmlAttr> addList = addRequest.getAttr();
for(DsmlAttr attr : addList)
--
Gitblit v1.10.0