Interface ModifyDNResult
-
- All Superinterfaces:
GenericResult,Result
- All Known Subinterfaces:
UpdatableModifyDNResult
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface ModifyDNResult extends GenericResult
This interface defines a set of methods which may be used to interact with modify DN results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssuredReplicationRequirementsgetAssuredReplicationRequirements()Retrieves the assured replication requirements that will be used for this operation, if any.EntrygetNewEntry()Retrieves the entry is it appeared after the modify DN operation, if available.EntrygetOldEntry()Retrieves the entry as it appeared before the modify DN operation, if available.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.GenericResult
getAdditionalLogMessage, getDiagnosticMessage, getMatchedDN, getReferralURLs, getResultCode, toLDAPSDKResult
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Result
getOperationType, getResultControls
-
-
-
-
Method Detail
-
getOldEntry
Entry getOldEntry()
Retrieves the entry as it appeared before the modify DN operation, if available.- Returns:
- The entry as it appeared before the modify DN operation, or
nullif it is not available.
-
getNewEntry
Entry getNewEntry()
Retrieves the entry is it appeared after the modify DN operation, if available.- Returns:
- The entry as it appeared after the modify DN operation, or
nullif it is not available.
-
getAssuredReplicationRequirements
AssuredReplicationRequirements getAssuredReplicationRequirements()
Retrieves the assured replication requirements that will be used for this operation, if any.- Returns:
- The assured replication requirements that will be used for this
operation, or
nullif no assurance will be provided for this operation.
-
-