@NotMutable @ThreadSafety(level=NOT_THREADSAFE) public final class EXTERNALBindRequest extends SASLBindRequest
EXTERNALBindRequest bindRequest = new EXTERNALBindRequest(""); BindResult bindResult; try { bindResult = connection.bind(bindRequest); // If we get here, then the bind was successful. } catch (LDAPException le) { // The bind failed for some reason. bindResult = new BindResult(le.toLDAPResult()); ResultCode resultCode = le.getResultCode(); String errorMessageFromServer = le.getDiagnosticMessage(); }
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
EXTERNAL_MECHANISM_NAME
The name for the EXTERNAL SASL mechanism.
|
CRED_TYPE_SASL
VERSION_ELEMENT
Constructor and Description |
---|
EXTERNALBindRequest()
Creates a new SASL EXTERNAL bind request with no authorization ID and no
controls.
|
EXTERNALBindRequest(Control... controls)
Creates a new SASL EXTERNAL bind request with the provided set of controls.
|
EXTERNALBindRequest(java.lang.String authzID)
Creates a new SASL EXTERNAL bind request with the specified authorization
ID and no controls.
|
EXTERNALBindRequest(java.lang.String authzID,
Control... controls)
Creates a new SASL EXTERNAL bind request with the provided set of controls.
|
Modifier and Type | Method and Description |
---|---|
EXTERNALBindRequest |
duplicate()
Creates a new instance of this LDAP request that may be modified without
impacting this request.
|
EXTERNALBindRequest |
duplicate(Control[] controls)
Creates a new instance of this LDAP request that may be modified without
impacting this request.
|
java.lang.String |
getAuthorizationID()
Retrieves the authorization ID that should be included in the bind request,
if any.
|
int |
getLastMessageID()
Retrieves the message ID for the last LDAP message sent using this request.
|
EXTERNALBindRequest |
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.
|
java.lang.String |
getSASLMechanismName()
Retrieves the name of the SASL mechanism used in this SASL bind request.
|
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 |
toCode(java.util.List<java.lang.String> lineList,
java.lang.String requestID,
int indentSpaces,
boolean includeProcessing)
Appends a number of lines comprising the Java source code that can be used
to recreate this request to the given list.
|
void |
toString(java.lang.StringBuilder buffer)
Appends a string representation of this request to the provided buffer.
|
getBindType, responseReceived, sendBindRequest, sendMessage
getOperationType
followReferrals, getControl, getControlList, getControls, getIntermediateResponseListener, getReferralConnector, getReferralConnectorInternal, getReferralDepth, getResponseTimeoutMillis, hasControl, hasControl, setFollowReferrals, setIntermediateResponseListener, setReferralConnector, setReferralDepth, setResponseTimeoutMillis, toString
@NotNull public static final java.lang.String EXTERNAL_MECHANISM_NAME
public EXTERNALBindRequest()
public EXTERNALBindRequest(@Nullable java.lang.String authzID)
authzID
- The authorization ID to use for the bind request. It may
be null
if the client should not send any
authorization ID at all (which may be required by some
servers). It may be an empty string if the server should
determine the authorization identity from what it knows
about the client (e.g., a client certificate). It may be
a non-empty string if the authorization identity should
be different from the authentication identity.public EXTERNALBindRequest(@Nullable Control... controls)
controls
- The set of controls to include in this SASL EXTERNAL
bind request.public EXTERNALBindRequest(@Nullable java.lang.String authzID, @Nullable Control... controls)
authzID
- The authorization ID to use for the bind request. It may
be null
if the client should not send any
authorization ID at all (which may be required by some
servers). It may be an empty string if the server should
determine the authorization identity from what it knows
about the client (e.g., a client certificate). It may be
a non-empty string if the authorization identity should
be different from the authentication identity.controls
- The set of controls to include in this SASL EXTERNAL
bind request.@Nullable public java.lang.String getAuthorizationID()
null
if the bind request should be sent without an
authorization ID (which is a form that some servers require). It
may be an empty string if the authorization identity should be the
same as the authentication identity and should be determined from
what the server already knows about the client.@NotNull public java.lang.String getSASLMechanismName()
getSASLMechanismName
in class SASLBindRequest
@NotNull protected BindResult process(@NotNull LDAPConnection connection, int depth) throws LDAPException
process
in class BindRequest
connection
- 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.@NotNull public EXTERNALBindRequest getRebindRequest(@NotNull java.lang.String host, int port)
getRebindRequest
in class BindRequest
host
- 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.public int getLastMessageID()
getLastMessageID
in class SASLBindRequest
@NotNull public EXTERNALBindRequest duplicate()
duplicate
in interface ReadOnlyLDAPRequest
duplicate
in class BindRequest
@NotNull public EXTERNALBindRequest duplicate(@Nullable Control[] controls)
duplicate
in interface ReadOnlyLDAPRequest
duplicate
in class BindRequest
controls
- The set of controls to include in the duplicate request.public void toString(@NotNull java.lang.StringBuilder buffer)
toString
in interface ReadOnlyLDAPRequest
toString
in class LDAPRequest
buffer
- The buffer to which to append a string representation of
this request.public void toCode(@NotNull java.util.List<java.lang.String> lineList, @NotNull java.lang.String requestID, int indentSpaces, boolean includeProcessing)
toCode
in interface ReadOnlyLDAPRequest
toCode
in class SASLBindRequest
lineList
- The list to which the source code lines should
be added.requestID
- The name that should be used as an identifier
for the request. If this is null
or
empty, then a generic ID will be used.indentSpaces
- The number of spaces that should be used to
indent the generated code. It must not be
negative.includeProcessing
- Indicates whether the generated code should
include code required to actually process the
request and handle the result (if true
),
or just to generate the request (if
false
).