Uses of Interface
org.forgerock.opendj.ldap.messages.BindResult
-
Packages that use BindResult 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. -
-
Uses of BindResult in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return BindResult Modifier and Type Method Description BindResult
AbstractAsynchronousConnection. bind(BindRequest request)
BindResult
AbstractConnection. bind(String name, char[] password)
BindResult
AbstractConnectionWrapper. bind(String name, char[] password)
Authenticates to the Directory Server using simple authentication and the provided user name and password.BindResult
AbstractConnectionWrapper. bind(BindRequest request)
Authenticates to the Directory Server using the provided bind request.BindResult
Connection. bind(String name, char[] password)
Authenticates to the Directory Server using simple authentication and the provided user name and password.BindResult
Connection. bind(BindRequest request)
Authenticates to the Directory Server using the provided bind request.Methods in org.forgerock.opendj.ldap that return types with arguments of type BindResult Modifier and Type Method Description default Single<BindResult>
LdapClientSocket. bind(BindRequest request)
Authenticates to the Directory Server using the provided bind request.LdapPromise<BindResult>
AbstractConnection. bindAsync(BindRequest request)
LdapPromise<BindResult>
AbstractConnectionWrapper. bindAsync(BindRequest request)
Asynchronously authenticates to the Directory Server using the provided bind request.LdapPromise<BindResult>
AbstractConnectionWrapper. 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>
Connection. bindAsync(BindRequest request)
Asynchronously authenticates to the Directory Server using the provided bind request.LdapPromise<BindResult>
Connection. bindAsync(BindRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously authenticates to the Directory Server using the provided bind request. -
Uses of BindResult in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return BindResult Modifier and Type Method 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(String dn)
BindResult
BindResult. setMatchedDn(Dn dn)
BindResult
BindResult. setResultCode(ResultCode resultCode)
BindResult
BindResult. setSaslServer(SaslServer saslServer)
Sets theSaslServer
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.Methods in org.forgerock.opendj.ldap.messages with parameters of type BindResult Modifier and Type Method 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 anLdapMessage
containing aBindResult
.static BindResult
Responses. unmodifiableBindResult(BindResult result)
Creates an unmodifiable bind result using the provided response.
-