Uses of Class
org.forgerock.opendj.ldap.messages.LdapMessage
-
Packages that use LdapMessage Package Description org.forgerock.opendj.io Classes and interfaces providing I/O functionality.org.forgerock.opendj.io.rx Classes and interfaces providing Reactive Streams I/O transports.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses. -
-
Uses of LdapMessage in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io that return LdapMessage Modifier and Type Method Description LdapMessageLdapReader. readLdapMessage()Reads the next LDAP message from the underlying ASN.1 reader.LdapMessageLdapReader. readLdapRequestMessage()Reads the next LDAP request message from the underlying ASN.1 reader.LdapMessageLdapReader. readLdapResponseMessage()Reads the next LDAP response message from the underlying ASN.1 reader.Methods in org.forgerock.opendj.io that return types with arguments of type LdapMessage Modifier and Type Method Description default io.reactivex.rxjava3.core.Flowable<LdapMessage>LdapSocket. read()Returns a "cold"Flowablerepresenting the stream of LDAP messages read from the network.Methods in org.forgerock.opendj.io with parameters of type LdapMessage Modifier and Type Method Description voidLdapWriter. writeLdapMessage(LdapMessage ldapMessage)Writes the provided LDAP message. -
Uses of LdapMessage in org.forgerock.opendj.io.rx
Methods in org.forgerock.opendj.io.rx that return types with arguments of type LdapMessage Modifier and Type Method Description static RxTransport<LdapMessage,LdapSocket>RxIo. ldapMemoryTransport(Options options)Returns an in-memory reactive LDAP transport.static RxTransport<LdapMessage,LdapSocket>RxIo. ldapTransport(RxTransport<ByteBuffer,? extends RxSocket<ByteBuffer>> transport)Returns a reactive transport that adds an LDAP layer to an underlying transport.static RxTransport<LdapMessage,LdapSocket>RxIo. ldapTransportFromOptions(Options options)Returns a new LDAPRxTransportconfigured using the provided options. -
Uses of LdapMessage in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return LdapMessage Modifier and Type Method Description static LdapMessageLdapMessage. newLdapMessage(int messageId, byte protocolOpType, ProtocolOp protocolOp)Creates a newProtocolOpcontaining a fully decoded LDAP message.static LdapMessageLdapMessage. newRequestMessage(int messageId, Request request)Builds and returns anLdapMessagecontaining aRequest.static LdapMessageLdapMessage. newResponseMessage(int messageId, BindResult response)Builds and returns anLdapMessagecontaining aBindResult.static LdapMessageLdapMessage. newResponseMessage(int messageId, CompareResult response)Builds and returns anLdapMessagecontaining aCompareResult.static LdapMessageLdapMessage. newResponseMessage(int messageId, ExtendedResult response)Builds and returns anLdapMessagecontaining aExtendedResult.static LdapMessageLdapMessage. newResponseMessage(int messageId, IntermediateResponse response)Builds and returns anLdapMessagecontaining aIntermediateResponse.static LdapMessageLdapMessage. newResponseMessage(int messageId, Request forRequest, Response response)Builds and returns anLdapMessagecontaining aResponse.static LdapMessageLdapMessage. newResponseMessage(int messageId, SearchResultEntry response)Builds and returns anLdapMessagecontaining aSearchResultEntry.static LdapMessageLdapMessage. newResponseMessage(int messageId, SearchResultReference response)Builds and returns anLdapMessagecontaining aSearchResultReference.LdapMessageLdapMessage. newResponseMessage(Response response)Returns a newLdapMessagecontaining the providedResponse.static LdapMessageLdapMessage. newSearchResultDoneMessage(int messageId, Result result)Builds and returns anLdapMessagefor a search result done operation type.
-