Class AttrHistoricalMultiple
- java.lang.Object
-
- org.opends.server.replication.plugin.AttrHistorical
-
- org.opends.server.replication.plugin.AttrHistoricalMultiple
-
public class AttrHistoricalMultiple extends AttrHistorical
This class is used to store historical information for multiple valued attributes. One object of this type is created for each attribute that was changed in the entry. It allows to record the last time a given value was added,the last time a given value was deleted and the last time the whole attribute was deleted.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidassign(org.opends.server.replication.plugin.HistoricalAttributeValue histVal)Assign the provided historical value to this object.booleancontainsAddedValue(ByteString value)Returnstrueif this historical information contains add or replace meta-data for the provided attribute value.CSNgetDeleteTime()Returns the last time when this attribute was deleted.Set<AttrValueHistorical>getValuesHistorical()Get the historical informations for this attribute Info.voidprocessLocalOrNonConflictModification(CSN csn, Modification mod)This method calculates the historical information and update the hist attribute to store the historical information for modify operation that does not conflict with previous operation.ModificationreplayOperation(CSN csn, Entry modifiedEntry, Modification m)This method will be called when replaying an operation.StringtoString()
-
-
-
Method Detail
-
getDeleteTime
public CSN getDeleteTime()
Description copied from class:AttrHistoricalReturns the last time when this attribute was deleted.- Specified by:
getDeleteTimein classAttrHistorical- Returns:
- the last time when this attribute was deleted
-
getValuesHistorical
public Set<AttrValueHistorical> getValuesHistorical()
Description copied from class:AttrHistoricalGet the historical informations for this attribute Info.- Specified by:
getValuesHistoricalin classAttrHistorical- Returns:
- the historical informations
-
containsAddedValue
public boolean containsAddedValue(ByteString value)
Description copied from class:AttrHistoricalReturnstrueif this historical information contains add or replace meta-data for the provided attribute value.- Specified by:
containsAddedValuein classAttrHistorical- Parameters:
value- The attribute value.- Returns:
trueif this historical information contains add or replace meta-data for the provided attribute value.
-
replayOperation
public Modification replayOperation(CSN csn, Entry modifiedEntry, Modification m)
Description copied from class:AttrHistoricalThis method will be called when replaying an operation. It should use whatever historical information is stored in this class to solve the conflict and return the modification that will actually have to be replayed.- Specified by:
replayOperationin classAttrHistorical- Parameters:
csn- The CSN associated to the operation.modifiedEntry- The entry modified by this operation.m- The modification.- Returns:
- The modification which should be replayed, or
nullif the modification should not be replayed.
-
processLocalOrNonConflictModification
public void processLocalOrNonConflictModification(CSN csn, Modification mod)
Description copied from class:AttrHistoricalThis method calculates the historical information and update the hist attribute to store the historical information for modify operation that does not conflict with previous operation. This is the usual path and should therefore be optimized.It does not check if the operation to process is conflicting or not with previous operations. The caller is responsible for this.
- Specified by:
processLocalOrNonConflictModificationin classAttrHistorical- Parameters:
csn- The CSN of the operation to processmod- The modify operation to process.
-
assign
public void assign(org.opends.server.replication.plugin.HistoricalAttributeValue histVal)
Description copied from class:AttrHistoricalAssign the provided historical value to this object.- Specified by:
assignin classAttrHistorical- Parameters:
histVal- the historical value
-
-