Interface UpdatableResult
-
- All Superinterfaces:
Result
- All Known Subinterfaces:
UpdatableAddResult,UpdatableBindResult,UpdatableCompareResult,UpdatableDeleteResult,UpdatableExtendedResult,UpdatableGenericResult,UpdatableModifyDNResult,UpdatableModifyResult,UpdatableSearchResult
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface UpdatableResult extends Result
This interface defines a set of methods which may be used to update the contents of operation results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddResultControl(Control control)Adds the provided control to the set of result controls for this result.voidsetResultControls(java.util.List<Control> controls)Updates the set of result controls for this result.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Result
getOperationType, getResultControls
-
-
-
-
Method Detail
-
setResultControls
void setResultControls(java.util.List<Control> controls)
Updates the set of result controls for this result.- Parameters:
controls- The set of controls to use for this result. It may benullor empty if there should not be any controls.
-
addResultControl
void addResultControl(Control control)
Adds the provided control to the set of result controls for this result.- Parameters:
control- The control to be added to the set of result controls for this result. It must not benull.
-
-