@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface UpdatableModifyDNRequest extends ModifyDNRequest, UpdatableRequest
| Modifier and Type | Method and Description | 
|---|---|
| void | setDeleteOldRDN(boolean deleteOldRDN)Specifies whether to remove the old RDN values from the entry. | 
| void | setDN(com.unboundid.ldap.sdk.DN dn)Specifies the DN of the entry to move and/or rename. | 
| void | setDN(java.lang.String dn)Specifies the DN of the entry to move and/or rename. | 
| void | setNewRDN(com.unboundid.ldap.sdk.RDN newRDN)Specifies the new RDN to use for the entry. | 
| void | setNewRDN(java.lang.String newRDN)Specifies the new RDN to use for the entry. | 
| void | setNewSuperiorDN(com.unboundid.ldap.sdk.DN newSuperiorDN)Specifies the DN for the new superior entry, if any. | 
| void | setNewSuperiorDN(java.lang.String newSuperiorDN)Specifies the DN for the new superior entry, if any. | 
deleteOldRDN, getDN, getNewRDN, getNewSuperiorDN, toLDAPSDKRequest, toLDIFChangeRecordgetOperationType, getRequestControlsaddRequestControl, setRequestControlsvoid setDN(java.lang.String dn)
dn - The DN of the entry to move and/or rename.  It must not be
             null.void setDN(com.unboundid.ldap.sdk.DN dn)
dn - The DN of the entry to move and/or rename.  It must not be
             null.void setNewRDN(java.lang.String newRDN)
newRDN - The new RDN to use for the entry.  It must not be
                 null.void setNewRDN(com.unboundid.ldap.sdk.RDN newRDN)
newRDN - The new RDN to use for the entry.  It must not be
                 null.void setDeleteOldRDN(boolean deleteOldRDN)
deleteOldRDN - Indicates whether to remove the old RDN values from
                       the entry.void setNewSuperiorDN(java.lang.String newSuperiorDN)
newSuperiorDN - The DN for the new superior entry.  It may be
                        null if the entry should remain below its
                        current parent.void setNewSuperiorDN(com.unboundid.ldap.sdk.DN newSuperiorDN)
newSuperiorDN - The DN for the new superior entry.  It may be
                        null if the entry should remain below its
                        current parent.