Record Class OperationContext.ModifyDnContext
java.lang.Object
java.lang.Record
org.opends.server.replication.protocol.OperationContext.ModifyDnContext
- Record Components:
csn
- The CSN of the operationentryUuid
- the unique Id of the modified entrynewSuperiorEntryUuid
- The unique Identifier of the new parent,null
if the entry is to stay below the same parent
- All Implemented Interfaces:
OperationContext
- Enclosing interface:
- OperationContext
public static record OperationContext.ModifyDnContext(CSN csn, UUID entryUuid, UUID newSuperiorEntryUuid)
extends Record
implements OperationContext
Replication context that is attached to ModifyDN 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
ConstructorsConstructorDescriptionModifyDnContext
(CSN csn, UUID entryUuid, UUID newSuperiorEntryUuid) Creates an instance of aModifyDnContext
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.Returns the value of thenewSuperiorEntryUuid
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ModifyDnContext
Creates an instance of aModifyDnContext
record class.- Parameters:
csn
- the value for thecsn
record componententryUuid
- the value for theentryUuid
record componentnewSuperiorEntryUuid
- the value for thenewSuperiorEntryUuid
record 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 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
-
newSuperiorEntryUuid
Returns the value of thenewSuperiorEntryUuid
record component.- Returns:
- the value of the
newSuperiorEntryUuid
record component
-