From 157717b205d4c1f957cf810e04e06f11530c619c Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 02 Sep 2013 08:57:43 +0000
Subject: [PATCH] Renamed: - ChangeNumber to CSN - ChangeNumberGenerator to CSNGenerator - ChangeNumberTest to CSNTest - ChangeNumberGeneratorTest to CSNGeneratorTest

---
 opends/src/server/org/opends/server/replication/protocol/ModifyDnContext.java |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/protocol/ModifyDnContext.java b/opends/src/server/org/opends/server/replication/protocol/ModifyDnContext.java
index 1338659..b5bf4db 100644
--- a/opends/src/server/org/opends/server/replication/protocol/ModifyDnContext.java
+++ b/opends/src/server/org/opends/server/replication/protocol/ModifyDnContext.java
@@ -23,11 +23,11 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions copyright 2012 ForgeRock AS.
+ *      Portions copyright 2012-2013 ForgeRock AS
  */
 package org.opends.server.replication.protocol;
 
-import org.opends.server.replication.common.ChangeNumber;
+import org.opends.server.replication.common.CSN;
 
 /**
  * This class describe the replication context that is attached to
@@ -40,16 +40,15 @@
   /**
    * Creates a new ModifyDN Context with the provided parameters.
    *
-   * @param changeNumber The change number of the operation.
+   * @param csn The CSN of the operation.
    * @param entryUUID the unique Id of the modified entry.
    * @param newSuperiorEntryUUID The unique Identifier of the new parent,
    *                    can be null if the entry is to stay below the same
    *                    parent.
    */
-  public ModifyDnContext(ChangeNumber changeNumber, String entryUUID,
-                         String newSuperiorEntryUUID)
+  public ModifyDnContext(CSN csn, String entryUUID, String newSuperiorEntryUUID)
   {
-    super(changeNumber, entryUUID);
+    super(csn, entryUUID);
     this.newSuperiorEntryUUID = newSuperiorEntryUUID;
   }
 

--
Gitblit v1.10.0