Interface UpdatableModifyRequest
-
- All Superinterfaces:
ChangeRequest,ModifyRequest,Request,UpdatableRequest
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface UpdatableModifyRequest extends ModifyRequest, UpdatableRequest
This interface defines a set of methods which may be used to update a modify request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetDN(DN dn)Specifies the DN of the entry to modify.voidsetDN(java.lang.String dn)Specifies the DN of the entry to modify.voidsetModifications(java.util.List<Modification> modifications)Specifies the modifications to be applied.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.ModifyRequest
getDN, getModifications, toLDAPSDKRequest, toLDIFChangeRecord
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Request
getOperationType, getRequestControls
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.UpdatableRequest
addRequestControl, setRequestControls
-
-
-
-
Method Detail
-
setDN
void setDN(java.lang.String dn)
Specifies the DN of the entry to modify.- Parameters:
dn- The DN of the entry to modify. It must not benull.
-
setDN
void setDN(DN dn)
Specifies the DN of the entry to modify.- Parameters:
dn- The DN of the entry to modify. It must not benull.
-
setModifications
void setModifications(java.util.List<Modification> modifications)
Specifies the modifications to be applied.- Parameters:
modifications- The modifications to be applied. It must not benull.
-
-