Interface AddResult
-
- All Superinterfaces:
GenericResult
,Result
- All Known Subinterfaces:
UpdatableAddResult
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface AddResult extends GenericResult
This interface defines a set of methods which may be used to interact with add 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
getUndeletedEntry()
Retrieves the undeleted entry if thisAddResult
is in response to an undelete request.-
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
-
getUndeletedEntry
Entry getUndeletedEntry()
Retrieves the undeleted entry if thisAddResult
is in response to an undelete request.- Returns:
- The undeleted entry, or
null
if the original request was not an undelete request.
-
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.
-
-