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/server/org/opends/server/loggers/DirectoryAuditLogger.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/opends/src/server/org/opends/server/loggers/DirectoryAuditLogger.java b/opends/src/server/org/opends/server/loggers/DirectoryAuditLogger.java
index a96af5d..e0da784 100644
--- a/opends/src/server/org/opends/server/loggers/DirectoryAuditLogger.java
+++ b/opends/src/server/org/opends/server/loggers/DirectoryAuditLogger.java
@@ -56,13 +56,13 @@
 import org.opends.server.core.SearchOperation;
 import org.opends.server.core.UnbindOperation;
 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.ByteString;
 import org.opends.server.types.ConfigChangeResult;
 import org.opends.server.types.DisconnectReason;
 import org.opends.server.types.DN;
 import org.opends.server.types.ModificationType;
+import org.opends.server.types.RawAttribute;
+import org.opends.server.types.RawModification;
 import org.opends.server.types.ResultCode;
 import org.opends.server.types.SearchResultEntry;
 import org.opends.server.types.SearchResultReference;
@@ -233,8 +233,8 @@
       buffer.append(EOL);
       buffer.append("changetype: add");
       buffer.append(EOL);
-      List<LDAPAttribute> rawAttributes = addOperation.getRawAttributes();
-      for(LDAPAttribute attr : rawAttributes)
+      List<RawAttribute> rawAttributes = addOperation.getRawAttributes();
+      for(RawAttribute attr : rawAttributes)
       {
         buffer.append(attr.getAttributeType());
         buffer.append(":");
@@ -420,12 +420,12 @@
       buffer.append(EOL);
       buffer.append("changetype: modify");
       buffer.append(EOL);
-      List<LDAPModification> modifications =
+      List<RawModification> modifications =
            modifyOperation.getRawModifications();
-      for(LDAPModification modification : modifications)
+      for(RawModification modification : modifications)
       {
         ModificationType modType = modification.getModificationType();
-        LDAPAttribute attr = modification.getAttribute();
+        RawAttribute attr = modification.getAttribute();
         switch(modType)
         {
           case ADD:

--
Gitblit v1.10.0