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/AddContext.java |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/protocol/AddContext.java b/opends/src/server/org/opends/server/replication/protocol/AddContext.java
index 326a2f4..b2439ae 100644
--- a/opends/src/server/org/opends/server/replication/protocol/AddContext.java
+++ b/opends/src/server/org/opends/server/replication/protocol/AddContext.java
@@ -23,15 +23,14 @@
  *
  *
  *      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 describes the context that is attached to
- * Add Operation.
+ * This class describes the context that is attached to Add Operation.
  */
 public class AddContext extends OperationContext
 {
@@ -43,14 +42,13 @@
   /**
    * Creates a new AddContext with the provided information.
    *
-   * @param changeNumber The change number of the add operation.
+   * @param csn The CSN of the add operation.
    * @param entryUUID the Unique Id of the added entry.
    * @param parentEntryUUID The unique Id of the parent of the added entry.
    */
-  public AddContext(ChangeNumber changeNumber, String entryUUID,
-      String parentEntryUUID)
+  public AddContext(CSN csn, String entryUUID, String parentEntryUUID)
   {
-    super(changeNumber, entryUUID);
+    super(csn, entryUUID);
     this.parentEntryUUID = parentEntryUUID;
   }
 

--
Gitblit v1.10.0