Uses of Interface
org.forgerock.opendj.ldap.messages.Response
Package
Description
Classes and interfaces for core types including connections, entries, and
attributes.
Classes and interfaces for core LDAP requests/responses.
Classes and interfaces for reading and writing LDIF.
-
Uses of Response in org.forgerock.opendj.ldap
Modifier and TypeMethodDescriptionio.reactivex.rxjava3.core.Flowable<Response>
MemoryBackend.handleRequest
(int msgId, Request request) Returns aFlowable
which, when subscribed, will apply the providedrequest
to this memory backend.io.reactivex.rxjava3.core.Flowable<Response>
MemoryBackend.handleRequest
(Request request) Returns aFlowable
which, when subscribed, will apply the providedrequest
to this memory backend.default io.reactivex.rxjava3.core.Flowable<Response>
Sends a request to the Directory Server.io.reactivex.rxjava3.core.Flowable<Response>
LdapClientSocket.send
(Request request, RequestHandle handle) Sends a request to the Directory Server.Modifier and TypeMethodDescriptionstatic Connection
Connections.newInternalConnection
(io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>> requestHandler) Creates a newConnection
which will route requests to the providedrequestHandler
.static ConnectionFactory
Connections.newInternalConnectionFactory
(io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>> requestHandler) Creates a newConnectionFactory
which will route requests to the providedrequestHandler
.static LdapClient
LdapClients.newInternalLdapClient
(io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>> requestHandler) Creates a newLdapClient
which will route requests to the providedrequestHandler
.static LdapClientSocket
LdapClients.newInternalLdapClientSocket
(io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>> requestHandler) Creates a newLdapClientSocket
which will route requests to the providedrequestHandler
.ModifierConstructorDescriptionLdapServer
(int port, io.reactivex.rxjava3.functions.Function<LdapSession, io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>>> factory) Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer
(int port, io.reactivex.rxjava3.functions.Function<LdapSession, io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>>> factory, Options options) Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer
(String host, int port, io.reactivex.rxjava3.functions.Function<LdapSession, io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>>> factory) Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer
(String host, int port, io.reactivex.rxjava3.functions.Function<LdapSession, io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>>> factory, Options options) Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer
(Set<InetSocketAddress> addresses, io.reactivex.rxjava3.functions.Function<LdapSession, io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>>> factory) Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer
(Set<InetSocketAddress> addresses, io.reactivex.rxjava3.functions.Function<LdapSession, io.reactivex.rxjava3.functions.BiFunction<Integer, Request, io.reactivex.rxjava3.core.Flowable<Response>>> factory, Options options) Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address. -
Uses of Response in org.forgerock.opendj.ldap.messages
Modifier and TypeInterfaceDescriptioninterface
A Bind result indicates the status of the client's request for authentication.interface
An Compare result indicates the final status of an Compare operation.interface
A Extended result indicates the status of an Extended operation and any additional information associated with the Extended operation, including the optional response name and value.interface
A Generic Extended result indicates the final status of an Generic Extended operation.interface
A Generic Intermediate response provides a mechanism for communicating unrecognized or unsupported Intermediate responses to the client.interface
An Intermediate response provides a general mechanism for defining single-request/multiple-response operations.interface
The password modify extended result as defined in RFC 3062.interface
A Result is used to indicate the status of an operation performed by the server.interface
A Search Result Entry represents an entry found during a Search operation.interface
A Search Result Reference represents an area not yet explored during a Search operation.interface
The start tls extended result as defined in RFC 4511.interface
The who am I extended result as defined in RFC 4532.Modifier and TypeClassDescriptionclass
AbstractExtendedResult<S extends ExtendedResult>
An abstract Extended result which can be used as the basis for implementing new Extended operations.class
AbstractIntermediateResponse<S extends IntermediateResponse>
An abstract Intermediate response which can be used as the basis for implementing new Intermediate responses.Modifier and TypeMethodDescriptionResponse.addControl
(Control control) Response.addControls
(Iterable<? extends Control> control) Response.removeControls
(String oid) Modifier and TypeMethodDescriptionstatic LdapMessage
LdapMessage.newResponseMessage
(int messageId, Request forRequest, Response response) Builds and returns anLdapMessage
containing aResponse
.LdapMessage.newResponseMessage
(Response response) Returns a newLdapMessage
containing the providedResponse
. -
Uses of Response in org.forgerock.opendj.ldif
ModifierConstructorDescriptionConnectionEntryReader
(Connection connection, SearchRequest searchRequest, BlockingQueue<Response> entries) Creates a new connection entry reader whose destination is the provided connection.