Record Class OperationContext.AddContext
java.lang.Object
java.lang.Record
org.opends.server.replication.protocol.OperationContext.AddContext
- Record Components:
csn- The CSN of the add operationentryUuid- the Unique Id of the added entryparentEntryUuid- The unique Id of the parent of the added entry
- All Implemented Interfaces:
OperationContext
- Enclosing interface:
- OperationContext
public static record OperationContext.AddContext(CSN csn, UUID entryUuid, UUID parentEntryUuid)
extends Record
implements OperationContext
Replication context that is attached to Add Operation.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.opends.server.replication.protocol.OperationContext
OperationContext.AddContext, OperationContext.DeleteContext, OperationContext.ModifyContext, OperationContext.ModifyDnContext -
Field Summary
Fields inherited from interface org.opends.server.replication.protocol.OperationContext
SYNCHROCONTEXT -
Constructor Summary
ConstructorsConstructorDescriptionAddContext(CSN csn, UUID entryUuid, UUID parentEntryUuid) Creates an instance of aAddContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncsn()Returns the value of thecsnrecord component.Returns the value of theentryUuidrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theparentEntryUuidrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AddContext
Creates an instance of aAddContextrecord class.- Parameters:
csn- the value for thecsnrecord componententryUuid- the value for theentryUuidrecord componentparentEntryUuid- the value for theparentEntryUuidrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
csn
Returns the value of thecsnrecord component.- Specified by:
csnin interfaceOperationContext- Returns:
- the value of the
csnrecord component
-
entryUuid
Returns the value of theentryUuidrecord component.- Specified by:
entryUuidin interfaceOperationContext- Returns:
- the value of the
entryUuidrecord component
-
parentEntryUuid
Returns the value of theparentEntryUuidrecord component.- Returns:
- the value of the
parentEntryUuidrecord component
-