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,nullif 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 aModifyDnContextrecord 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 thenewSuperiorEntryUuidrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ModifyDnContext
Creates an instance of aModifyDnContextrecord class.- Parameters:
csn- the value for thecsnrecord componententryUuid- the value for theentryUuidrecord componentnewSuperiorEntryUuid- the value for thenewSuperiorEntryUuidrecord 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
-
newSuperiorEntryUuid
Returns the value of thenewSuperiorEntryUuidrecord component.- Returns:
- the value of the
newSuperiorEntryUuidrecord component
-