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/protocols/jmx/JmxClientConnection.java | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
index 03b4522..98672a1 100644
--- a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -43,8 +43,6 @@
import org.opends.server.protocols.internal.InternalSearchOperation ;
import org.opends.server.protocols.internal.InternalSearchListener;
-import static org.opends.server.loggers.debug.DebugLogger.debugCaught;
-import static org.opends.server.loggers.debug.DebugLogger.debugEnabled;
import org.opends.server.types.DebugLogLevel;
import org.opends.server.types.AuthenticationInfo;
import org.opends.server.types.CancelRequest;
@@ -55,9 +53,14 @@
import org.opends.server.types.DirectoryException;
import org.opends.server.types.DisconnectReason;
import org.opends.server.types.IntermediateResponse;
+import org.opends.server.types.Operation;
+import org.opends.server.types.RawAttribute;
+import org.opends.server.types.RawModification;
import org.opends.server.types.SearchResultEntry;
import org.opends.server.types.SearchResultReference;
import org.opends.server.types.SearchScope;
+
+import static org.opends.server.loggers.debug.DebugLogger.*;
import static org.opends.server.messages.ProtocolMessages.*;
@@ -69,8 +72,6 @@
public class JmxClientConnection
extends ClientConnection implements NotificationListener
{
-
-
// The message ID counter to use for jmx connections.
private AtomicInteger nextMessageID;
@@ -462,7 +463,7 @@
* information about the result of the processing.
*/
public AddOperation processAdd(ASN1OctetString rawEntryDN,
- ArrayList<LDAPAttribute> rawAttributes)
+ ArrayList<RawAttribute> rawAttributes)
{
AddOperation addOperation =
new AddOperation(this, nextOperationID(), nextMessageID(),
@@ -554,7 +555,7 @@
* contains information about the result of the processing
*/
public ModifyOperation processModify(ASN1OctetString rawEntryDN,
- ArrayList<LDAPModification> rawModifications)
+ ArrayList<RawModification> rawModifications)
{
ModifyOperation modifyOperation =
new ModifyOperation(this, nextOperationID(), nextMessageID(),
--
Gitblit v1.10.0