From 27053769cfc943bda17d6107368e8f1c9305f6bb Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 09 Sep 2016 13:21:38 +0000
Subject: [PATCH] AttrHistorical code cleanup
---
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistorical.java | 10 +++-------
1 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistorical.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistorical.java
index 7b83f30..78aa10d 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/AttrHistorical.java
+++ b/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);
}
--
Gitblit v1.10.0