|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.unboundid.ldap.sdk.LDAPRequest
com.unboundid.ldap.sdk.BindRequest
com.unboundid.ldap.sdk.SimpleBindRequest
@NotMutable @ThreadSafety(level=NOT_THREADSAFE) public final class SimpleBindRequest
This class implements the processing necessary to perform an LDAPv3 simple bind operation, which authenticates using a bind DN and password.
| Field Summary |
|---|
| Fields inherited from class com.unboundid.ldap.sdk.BindRequest |
|---|
VERSION_ELEMENT |
| Constructor Summary | |
|---|---|
SimpleBindRequest()
Creates a new simple bind request that may be used to perform an anonymous bind to the directory server (i.e., with a zero-length bind DN and a zero-length password). |
|
SimpleBindRequest(DN bindDN,
byte[] password)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(DN bindDN,
byte[] password,
Control... controls)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(DN bindDN,
PasswordProvider passwordProvider,
Control... controls)
Creates a new simple bind request with the provided bind DN and that will use a password provider in order to obtain the bind password. |
|
SimpleBindRequest(DN bindDN,
java.lang.String password)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(DN bindDN,
java.lang.String password,
Control... controls)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(java.lang.String bindDN,
byte[] password)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(java.lang.String bindDN,
byte[] password,
Control... controls)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(java.lang.String bindDN,
PasswordProvider passwordProvider,
Control... controls)
Creates a new simple bind request with the provided bind DN and that will use a password provider in order to obtain the bind password. |
|
SimpleBindRequest(java.lang.String bindDN,
java.lang.String password)
Creates a new simple bind request with the provided bind DN and password. |
|
SimpleBindRequest(java.lang.String bindDN,
java.lang.String password,
Control... controls)
Creates a new simple bind request with the provided bind DN and password. |
|
| Method Summary | |
|---|---|
SimpleBindRequest |
duplicate()
Creates a new instance of this LDAP request that may be modified without impacting this request. |
SimpleBindRequest |
duplicate(Control[] controls)
Creates a new instance of this LDAP request that may be modified without impacting this request. |
ASN1Element |
encodeProtocolOp()
Encodes this protocol op to an ASN.1 element suitable for inclusion in an encoded LDAP message. |
java.lang.String |
getBindDN()
Retrieves the bind DN for this simple bind request. |
java.lang.String |
getBindType()
Retrieves a human-readable string that describes the type of bind request. |
int |
getLastMessageID()
Retrieves the message ID for the last LDAP message sent using this request. |
ASN1OctetString |
getPassword()
Retrieves the password for this simple bind request, if no password provider has been configured. |
PasswordProvider |
getPasswordProvider()
Retrieves the password provider for this simple bind request, if defined. |
byte |
getProtocolOpType()
Retrieves the BER type for this protocol op. |
SimpleBindRequest |
getRebindRequest(java.lang.String host,
int port)
Retrieves a bind request that may be used to re-bind using the same credentials authentication type and credentials as previously used to perform the initial bind. |
protected BindResult |
process(LDAPConnection connection,
int depth)
Sends this bind request to the target server over the provided connection and returns the corresponding response. |
void |
responseReceived(LDAPResponse response)
Indicates that the provided LDAP response has been received by from the server. |
void |
toString(java.lang.StringBuilder buffer)
Appends a string representation of this request to the provided buffer. |
void |
writeTo(ASN1Buffer buffer)
Writes an ASN.1-encoded representation of this LDAP protocol op to the provided ASN.1 buffer. |
| Methods inherited from class com.unboundid.ldap.sdk.BindRequest |
|---|
getOperationType |
| Methods inherited from class com.unboundid.ldap.sdk.LDAPRequest |
|---|
followReferrals, getControl, getControlList, getControls, getIntermediateResponseListener, getResponseTimeoutMillis, hasControl, hasControl, setFollowReferrals, setIntermediateResponseListener, setResponseTimeoutMillis, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public SimpleBindRequest()
public SimpleBindRequest(java.lang.String bindDN,
java.lang.String password)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.
public SimpleBindRequest(java.lang.String bindDN,
byte[] password)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.
public SimpleBindRequest(DN bindDN,
java.lang.String password)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.
public SimpleBindRequest(DN bindDN,
byte[] password)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.
public SimpleBindRequest(java.lang.String bindDN,
java.lang.String password,
Control... controls)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.controls - The set of controls for this simple bind request.
public SimpleBindRequest(java.lang.String bindDN,
byte[] password,
Control... controls)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.controls - The set of controls for this simple bind request.
public SimpleBindRequest(DN bindDN,
java.lang.String password,
Control... controls)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.controls - The set of controls for this simple bind request.
public SimpleBindRequest(DN bindDN,
byte[] password,
Control... controls)
bindDN - The bind DN for this simple bind request.password - The password for this simple bind request.controls - The set of controls for this simple bind request.
public SimpleBindRequest(java.lang.String bindDN,
PasswordProvider passwordProvider,
Control... controls)
bindDN - The bind DN for this simple bind request. It
must not be null.passwordProvider - The password provider that will be used to obtain
the password for this simple bind request. It
must not be null.controls - The set of controls for this simple bind request.
public SimpleBindRequest(DN bindDN,
PasswordProvider passwordProvider,
Control... controls)
bindDN - The bind DN for this simple bind request. It
must not be null.passwordProvider - The password provider that will be used to obtain
the password for this simple bind request. It
must not be null.controls - The set of controls for this simple bind request.| Method Detail |
|---|
public java.lang.String getBindDN()
public ASN1OctetString getPassword()
null if a
password provider will be used to obtain the password.public PasswordProvider getPasswordProvider()
null if this bind request was created with an explicit
password rather than a password provider.public byte getProtocolOpType()
getProtocolOpType in interface ProtocolOppublic void writeTo(ASN1Buffer buffer)
writeTo in interface ProtocolOpbuffer - The ASN.1 buffer to which the encoded representation should
be written.
public ASN1Element encodeProtocolOp()
throws LDAPSDKUsageException
encodeProtocolOp in interface ProtocolOpLDAPSDKUsageException - If this bind request was created with a
password provider rather than a static
password.
protected BindResult process(LDAPConnection connection,
int depth)
throws LDAPException
process in class BindRequestconnection - The connection to use to send this bind request to the
server and read the associated response.depth - The current referral depth for this request. It should
always be one for the initial request, and should only
be incremented when following referrals.
LDAPException - If a problem occurs while sending the request or
reading the response.
public SimpleBindRequest getRebindRequest(java.lang.String host,
int port)
getRebindRequest in class BindRequesthost - The address of the directory server to which the connection
is established.port - The port of the directory server to which the connection is
established.
null to indicate that automatic
re-binding is not supported for this type of bind request.
@InternalUseOnly
public void responseReceived(LDAPResponse response)
throws LDAPException
response - The LDAP response that has been received from the server.
It may be null if the connection has been closed
without having received any response.
LDAPException - If a problem occurs while handling the response.public java.lang.String getBindType()
getBindType in class BindRequestpublic int getLastMessageID()
getLastMessageID in class LDAPRequestpublic SimpleBindRequest duplicate()
duplicate in interface ReadOnlyLDAPRequestduplicate in class BindRequestpublic SimpleBindRequest duplicate(Control[] controls)
duplicate in interface ReadOnlyLDAPRequestduplicate in class BindRequestcontrols - The set of controls to include in the duplicate request.
public void toString(java.lang.StringBuilder buffer)
toString in interface ProtocolOptoString in interface ReadOnlyLDAPRequesttoString in class LDAPRequestbuffer - The buffer to which to append a string representation of
this request.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||