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

Jean-Noel Rouvignac
10.45.2013 87b6a9294f437fd6312c2fbe2292ee64babd8d7e
opends/src/server/org/opends/server/replication/server/changelog/api/ChangeNumberIndexRecord.java
File was renamed from opends/src/server/org/opends/server/replication/server/changelog/api/CNIndexRecord.java
@@ -30,10 +30,10 @@
import org.opends.server.types.DN;
/**
 * The Change Number Index Data class represents records stored in the
 * The Change Number Index Record class represents records stored in the
 * {@link ChangeNumberIndexDB}.
 */
public final class CNIndexRecord
public final class ChangeNumberIndexRecord
{
  /** This is the key used to store the rest of the . */
@@ -54,8 +54,8 @@
   * @param csn
   *          the replication CSN field
   */
  public CNIndexRecord(long changeNumber, String previousCookie, DN baseDN,
      CSN csn)
  public ChangeNumberIndexRecord(long changeNumber, String previousCookie,
      DN baseDN, CSN csn)
  {
    this.changeNumber = changeNumber;
    this.previousCookie = previousCookie;
@@ -72,9 +72,9 @@
   *          the baseDN
   * @param csn
   *          the replication CSN field
   * @see #CNIndexRecord(long, String, DN, CSN)
   * @see #ChangeNumberIndexRecord(long, String, DN, CSN)
   */
  public CNIndexRecord(String previousCookie, DN baseDN, CSN csn)
  public ChangeNumberIndexRecord(String previousCookie, DN baseDN, CSN csn)
  {
    this(0, previousCookie, baseDN, csn);
  }