@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface UpdatableSimpleBindRequest extends SimpleBindRequest, UpdatableBindRequest
| Modifier and Type | Method and Description | 
|---|---|
void | 
setDN(com.unboundid.ldap.sdk.DN dn)
Specifies the DN of the user attempting to bind. 
 | 
void | 
setDN(java.lang.String dn)
Specifies the DN of the user attempting to bind. 
 | 
void | 
setPassword(com.unboundid.util.ByteString password)
Specifies the password for the bind request. 
 | 
void | 
setPassword(java.lang.String password)
Specifies the password for the bind request. 
 | 
getDN, getPassword, toLDAPSDKRequestaddRequestControl, setRequestControlsgetOperationType, getRequestControlsvoid setDN(java.lang.String dn)
dn - The DN of the user that is trying to authenticate.  It must not
             be null, but it may be an empty string to indicate a
             zero-length DN.void setDN(com.unboundid.ldap.sdk.DN dn)
dn - The DN of the user that is trying to authenticate.  It must not
             be null, but it may be an empty string to indicate a
             zero-length DN.void setPassword(com.unboundid.util.ByteString password)
password - The password for the bind request.  It must not be
                   null but may be a zero-length byte string  for
                   anonymous authentication.void setPassword(java.lang.String password)
password - The password for the bind request.  It must not be
                   null but may be a zero-length byte string  for
                   anonymous authentication.