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

All Superinterfaces:
ChangeRequest, DeleteRequest, Request, UpdatableRequest

@NotExtensible
@ThreadSafety(level=INTERFACE_NOT_THREADSAFE)
public interface UpdatableDeleteRequest
extends DeleteRequest, UpdatableRequest

This interface defines a set of methods which may be used to update a delete request.


Method Summary
 void setDN(com.unboundid.ldap.sdk.DN dn)
          Specifies the DN of th entry to be deleted.
 void setDN(java.lang.String dn)
          Specifies the DN of th entry to be deleted.
 
Methods inherited from interface com.unboundid.directory.sdk.common.operation.DeleteRequest
getDN, getHardDeleteRequestControl, getSoftDeleteRequestControl, isHardDelete, isSoftDelete, 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 th entry to be deleted.

Parameters:
dn - The DN of the entry to be deleted. It must not be null.

setDN

void setDN(com.unboundid.ldap.sdk.DN dn)
Specifies the DN of th entry to be deleted.

Parameters:
dn - The DN of the entry to be deleted. It must not be null.