Package | Description |
---|---|
org.forgerock.opendj.ldap |
Classes and interfaces for core types including connections, entries, and
attributes.
|
org.forgerock.opendj.ldap.messages |
Classes and interfaces for core LDAP requests/responses.
|
Modifier and Type | Method and Description |
---|---|
BindResult |
Connection.bind(BindRequest request)
Authenticates to the Directory Server using the provided bind request.
|
BindResult |
AbstractConnectionWrapper.bind(BindRequest request)
Authenticates to the Directory Server using the provided bind request.
|
BindResult |
AbstractAsynchronousConnection.bind(BindRequest request) |
BindResult |
Connection.bind(String name,
char[] password)
Authenticates to the Directory Server using simple authentication and the
provided user name and password.
|
BindResult |
AbstractConnectionWrapper.bind(String name,
char[] password)
Authenticates to the Directory Server using simple authentication and the
provided user name and password.
|
BindResult |
AbstractConnection.bind(String name,
char[] password) |
Modifier and Type | Method and Description |
---|---|
default io.reactivex.Single<BindResult> |
LdapClientSocket.bind(BindRequest request)
Authenticates to the Directory Server using the provided bind request.
|
LdapPromise<BindResult> |
Connection.bindAsync(BindRequest request)
Asynchronously authenticates to the Directory Server using the provided
bind request.
|
LdapPromise<BindResult> |
AbstractConnectionWrapper.bindAsync(BindRequest request)
Asynchronously authenticates to the Directory Server using the provided
bind request.
|
LdapPromise<BindResult> |
AbstractConnection.bindAsync(BindRequest request) |
LdapPromise<BindResult> |
Connection.bindAsync(BindRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously authenticates to the Directory Server using the provided
bind request.
|
LdapPromise<BindResult> |
AbstractSynchronousConnection.bindAsync(BindRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
LdapPromise<BindResult> |
AbstractConnectionWrapper.bindAsync(BindRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously authenticates to the Directory Server using the provided
bind request.
|
Modifier and Type | Method and Description |
---|---|
BindResult |
BindResult.addControl(Control control) |
BindResult |
BindResult.addControls(Iterable<? extends Control> controls) |
BindResult |
BindResult.addReferralUri(String uri) |
static BindResult |
Responses.copyOfBindResult(BindResult result)
Creates a new bind result that is an exact copy of the provided result.
|
static BindResult |
Responses.newBindResult(ResultCode resultCode)
Creates a new bind result using the provided result code.
|
BindResult |
BindResult.setCause(Throwable cause) |
BindResult |
BindResult.setDiagnosticMessage(CharSequence message) |
BindResult |
BindResult.setMatchedDn(Dn dn) |
BindResult |
BindResult.setMatchedDn(String dn) |
BindResult |
BindResult.setResultCode(ResultCode resultCode) |
BindResult |
BindResult.setSaslServer(SaslServer saslServer)
Sets the
SaslServer to use by the underlying connection. |
BindResult |
BindResult.setServerSaslCredentials(ByteString credentials)
Sets the server SASL credentials associated with this bind result.
|
static BindResult |
Responses.unmodifiableBindResult(BindResult result)
Creates an unmodifiable bind result using the provided response.
|
Modifier and Type | Method and Description |
---|---|
static BindResult |
Responses.copyOfBindResult(BindResult result)
Creates a new bind result that is an exact copy of the provided result.
|
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
BindResult response)
Builds and returns an
LdapMessage containing a BindResult . |
static BindResult |
Responses.unmodifiableBindResult(BindResult result)
Creates an unmodifiable bind result using the provided response.
|
Copyright © 2010-2018, ForgeRock All Rights Reserved.