Record Class OperationContext.ModifyContext
java.lang.Object
java.lang.Record
org.opends.server.replication.protocol.OperationContext.ModifyContext
- Record Components:
csn- The CSN of the operationentryUuid- The unique Identifier of the modified entry
- All Implemented Interfaces:
OperationContext
- Enclosing interface:
- OperationContext
public static record OperationContext.ModifyContext(CSN csn, UUID entryUuid)
extends Record
implements OperationContext
Replication context attached to a Modify 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
ConstructorsConstructorDescriptionModifyContext(CSN csn, UUID entryUuid) Creates an instance of aModifyContextrecord 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.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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
-