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

Jean-Noël Rouvignac
02.02.2016 27053769cfc943bda17d6107368e8f1c9305f6bb
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistorical.java
@@ -19,7 +19,6 @@
import java.util.Iterator;
import java.util.Set;
import org.forgerock.opendj.ldap.ByteString;
import org.forgerock.opendj.ldap.schema.AttributeType;
import org.opends.server.replication.common.CSN;
import org.opends.server.types.Entry;
@@ -82,12 +81,9 @@
  public abstract CSN getDeleteTime();
  /**
   * Assign the provided information to this object.
   * Assign the provided historical value to this object.
   *
   * @param histKey the key to assign.
   * @param attrType the associated attribute type.
   * @param value   the associated value or null if there is no value;
   * @param csn     the associated CSN.
   * @param histVal the historical value
   */
  public abstract void assign(HistAttrModificationKey histKey, AttributeType attrType, ByteString value, CSN csn);
  public abstract void assign(HistoricalAttributeValue histVal);
}