Uses of Interface
org.forgerock.opendj.ldap.messages.Response
-
Packages that use Response 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.org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF. -
-
Uses of Response in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return types with arguments of type Response Modifier and Type Method Description io.reactivex.rxjava3.core.Flowable<Response>MemoryBackend. handleRequest(int msgId, Request request)Returns aFlowablewhich, when subscribed, will apply the providedrequestto this memory backend.io.reactivex.rxjava3.core.Flowable<Response>MemoryBackend. handleRequest(Request request)Returns aFlowablewhich, when subscribed, will apply the providedrequestto this memory backend.default io.reactivex.rxjava3.core.Flowable<Response>LdapClientSocket. send(Request request)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.Method parameters in org.forgerock.opendj.ldap with type arguments of type Response Modifier and Type Method Description static ConnectionConnections. newInternalConnection(io.reactivex.rxjava3.functions.BiFunction<Integer,Request,io.reactivex.rxjava3.core.Flowable<Response>> requestHandler)Creates a newConnectionwhich will route requests to the providedrequestHandler.static ConnectionFactoryConnections. newInternalConnectionFactory(io.reactivex.rxjava3.functions.BiFunction<Integer,Request,io.reactivex.rxjava3.core.Flowable<Response>> requestHandler)Creates a newConnectionFactorywhich will route requests to the providedrequestHandler.static LdapClientLdapClients. newInternalLdapClient(io.reactivex.rxjava3.functions.BiFunction<Integer,Request,io.reactivex.rxjava3.core.Flowable<Response>> requestHandler)Creates a newLdapClientwhich will route requests to the providedrequestHandler.static LdapClientSocketLdapClients. newInternalLdapClientSocket(io.reactivex.rxjava3.functions.BiFunction<Integer,Request,io.reactivex.rxjava3.core.Flowable<Response>> requestHandler)Creates a newLdapClientSocketwhich will route requests to the providedrequestHandler.Constructor parameters in org.forgerock.opendj.ldap with type arguments of type Response Constructor Description LdapServer(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
Subinterfaces of Response in org.forgerock.opendj.ldap.messages Modifier and Type Interface Description interfaceBindResultA Bind result indicates the status of the client's request for authentication.interfaceCompareResultAn Compare result indicates the final status of an Compare operation.interfaceExtendedResultA 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.interfaceGenericExtendedResultA Generic Extended result indicates the final status of an Generic Extended operation.interfaceGenericIntermediateResponseA Generic Intermediate response provides a mechanism for communicating unrecognized or unsupported Intermediate responses to the client.interfaceIntermediateResponseAn Intermediate response provides a general mechanism for defining single-request/multiple-response operations.interfacePasswordModifyExtendedResultThe password modify extended result as defined in RFC 3062.interfaceResultA Result is used to indicate the status of an operation performed by the server.interfaceSearchResultEntryA Search Result Entry represents an entry found during a Search operation.interfaceSearchResultReferenceA Search Result Reference represents an area not yet explored during a Search operation.interfaceStartTlsExtendedResultThe start tls extended result as defined in RFC 4511.interfaceWhoAmIExtendedResultThe who am I extended result as defined in RFC 4532.Classes in org.forgerock.opendj.ldap.messages that implement Response Modifier and Type Class Description classAbstractExtendedResult<S extends ExtendedResult>An abstract Extended result which can be used as the basis for implementing new Extended operations.classAbstractIntermediateResponse<S extends IntermediateResponse>An abstract Intermediate response which can be used as the basis for implementing new Intermediate responses.Methods in org.forgerock.opendj.ldap.messages that return Response Modifier and Type Method Description ResponseResponse. addControl(Control control)ResponseResponse. addControls(Iterable<? extends Control> control)Methods in org.forgerock.opendj.ldap.messages with parameters of type Response Modifier and Type Method Description static LdapMessageLdapMessage. newResponseMessage(int messageId, Request forRequest, Response response)Builds and returns anLdapMessagecontaining aResponse.LdapMessageLdapMessage. newResponseMessage(Response response)Returns a newLdapMessagecontaining the providedResponse. -
Uses of Response in org.forgerock.opendj.ldif
Constructor parameters in org.forgerock.opendj.ldif with type arguments of type Response Constructor Description ConnectionEntryReader(Connection connection, SearchRequest searchRequest, BlockingQueue<Response> entries)Creates a new connection entry reader whose destination is the provided connection.
-