mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
02.57.2013 be4d4d9909a3461fa0211e259d0d08dcd49cb221
opendj-sdk/opends/src/server/org/opends/server/replication/protocol/ModifyContext.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
@@ -39,11 +39,11 @@
  /**
   * Creates a new Modify 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.
   */
  public ModifyContext(ChangeNumber changeNumber, String entryUUID)
  public ModifyContext(CSN csn, String entryUUID)
  {
    super(changeNumber, entryUUID);
    super(csn, entryUUID);
  }
}