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 AssuredReplicationRequirements
getAssuredReplicationRequirements()
Retrieves the assured replication requirements that will be used for this operation, if any.Entry
getNewEntry()
Retrieves the entry is it appeared after the modify DN operation, if available.Entry
getOldEntry()
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
null
if 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
null
if 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
null
if no assurance will be provided for this operation.
-
-