com.unboundid.directory.sdk.common.operation
Interface ModifyResult

All Superinterfaces:
GenericResult, Result
All Known Subinterfaces:
UpdatableModifyResult

@NotExtensible
@ThreadSafety(level=INTERFACE_NOT_THREADSAFE)
public interface ModifyResult
extends GenericResult

This interface defines a set of methods which may be used to interact with modify results.


Method Summary
 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 operation, if available.
 Entry getOldEntry()
          Retrieves the entry as it appeared before the modify 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 operation, if available.

Returns:
The entry as it appeared before the modify operation, or null if it is not available.

getNewEntry

Entry getNewEntry()
Retrieves the entry is it appeared after the modify operation, if available.

Returns:
The entry as it appeared after the modify 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.