From 16781afd94b0ad1014b8394f524ffcc5bd89255b Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 17 Jul 2007 13:35:12 +0000
Subject: [PATCH] This fix is the refactoring of the extended operation (issue 1189).

---
 opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
index ea0b076..4984b4b 100644
--- a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
@@ -1076,11 +1076,12 @@
    *          and contains information about the result of the
    *          processing.
    */
-  public ExtendedOperation processExtendedOperation(String requestOID,
+  public ExtendedOperation processExtendedOperation(
+                                String requestOID,
                                 ASN1OctetString requestValue)
   {
-    ExtendedOperation extendedOperation =
-         new ExtendedOperation(this, nextOperationID(),
+    ExtendedOperationBasis extendedOperation =
+         new ExtendedOperationBasis(this, nextOperationID(),
                                nextMessageID(),
                                new ArrayList<Control>(0), requestOID,
                                requestValue);

--
Gitblit v1.10.0