From 27860483705d562fd31efa3348c54923123ccc10 Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 17 Jul 2007 08:14:43 +0000
Subject: [PATCH] This fix is the refactoring of the modrdn operation [issue 1180]

---
 opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java b/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
index ce06fad..a0647f2 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -744,7 +744,7 @@
    * @return  A reference to the modify DN operation that was processed and
    *          contains information about the result of the processing.
    */
-  public ModifyDNOperation processModifyDN(ASN1OctetString rawEntryDN,
+  public ModifyDNOperationBasis processModifyDN(ASN1OctetString rawEntryDN,
                                            ASN1OctetString rawNewRDN,
                                            boolean deleteOldRDN)
   {
@@ -767,13 +767,13 @@
    * @return  A reference to the modify DN operation that was processed and
    *          contains information about the result of the processing.
    */
-  public ModifyDNOperation processModifyDN(ASN1OctetString rawEntryDN,
+  public ModifyDNOperationBasis processModifyDN(ASN1OctetString rawEntryDN,
                                            ASN1OctetString rawNewRDN,
                                            boolean deleteOldRDN,
                                            ASN1OctetString rawNewSuperior)
   {
-    ModifyDNOperation modifyDNOperation =
-         new ModifyDNOperation(this, nextOperationID(), nextMessageID(),
+    ModifyDNOperationBasis modifyDNOperation =
+         new ModifyDNOperationBasis(this, nextOperationID(), nextMessageID(),
                                new ArrayList<Control>(0), rawEntryDN, rawNewRDN,
                                deleteOldRDN, rawNewSuperior);
 
@@ -807,12 +807,12 @@
    *          processed and contains information about the result of
    *          the processing.
    */
-  public ModifyDNOperation processModifyDN(DN entryDN, RDN newRDN,
+  public ModifyDNOperationBasis processModifyDN(DN entryDN, RDN newRDN,
                                            boolean deleteOldRDN,
                                            DN newSuperior)
   {
-    ModifyDNOperation modifyDNOperation =
-         new ModifyDNOperation(this, nextOperationID(),
+    ModifyDNOperationBasis modifyDNOperation =
+         new ModifyDNOperationBasis(this, nextOperationID(),
                                nextMessageID(),
                                new ArrayList<Control>(0), entryDN,
                                newRDN, deleteOldRDN, newSuperior);

--
Gitblit v1.10.0