com.unboundid.directory.sdk.common.operation
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
 void setDN(DN dn)
          Specifies the DN of the entry to modify.
 void setDN(java.lang.String dn)
          Specifies the DN of the entry to modify.
 void setModifications(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 be null.

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 be null.

setModifications

void setModifications(java.util.List<Modification> modifications)
Specifies the modifications to be applied.

Parameters:
modifications - The modifications to be applied. It must not be null.