Interface SimpleBindRequest
-
- All Superinterfaces:
BindRequest
,Request
- All Known Subinterfaces:
UpdatableSimpleBindRequest
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface SimpleBindRequest extends BindRequest
This interface defines a set of methods which may be used to interact with a simple bind request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDN()
Retrieves the DN of the user attempting to bind.ByteString
getPassword()
Retrieves the password for the bind request.SimpleBindRequest
toLDAPSDKRequest()
Retrieves an LDAP SDK representation of this simple bind request.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Request
getOperationType, getRequestControls
-
-
-
-
Method Detail
-
getDN
java.lang.String getDN()
Retrieves the DN of the user attempting to bind.- Returns:
- The DN of the user attempting to bind.
-
getPassword
ByteString getPassword()
Retrieves the password for the bind request.- Returns:
- The password for the bind request.
-
toLDAPSDKRequest
SimpleBindRequest toLDAPSDKRequest()
Retrieves an LDAP SDK representation of this simple bind request.- Specified by:
toLDAPSDKRequest
in interfaceBindRequest
- Returns:
- An LDAP SDK representation of this simple bind request.
-
-