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 aModifyContext
record class. -
Method Summary
Modifier and TypeMethodDescriptioncsn()
Returns the value of thecsn
record component.Returns the value of theentryUuid
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
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 thecsn
record component.- Specified by:
csn
in interfaceOperationContext
- Returns:
- the value of the
csn
record component
-
entryUuid
Returns the value of theentryUuid
record component.- Specified by:
entryUuid
in interfaceOperationContext
- Returns:
- the value of the
entryUuid
record component
-