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.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 LdapMessage
LdapReader. readLdapRequestMessage()
Reads the next LDAP request message from the underlying ASN.1 reader.LdapMessage
LdapReader. 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 Flowable<LdapMessage>
LdapSocket. read()
Returns aFlowable
of LDAP messages read from the network.Methods in org.forgerock.opendj.io with parameters of type LdapMessage Modifier and Type Method Description default Completable
LdapSocket. write(LdapMessage message)
Returns aCompletable
which, once subscribed, will write themessage
to the network.void
LdapWriter. writeLdapMessage(LdapMessage ldapMessage)
Writes the provided LDAP message.Method parameters in org.forgerock.opendj.io with type arguments of type LdapMessage Modifier and Type Method Description Completable
LdapSocket. write(Flowable<LdapMessage> messages)
Returns aCompletable
which, once subscribed, will write all themessages
to the network. -
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 LdapMessage
LdapMessage. newLdapMessage(int messageId, byte protocolOpType, ProtocolOp protocolOp)
Creates a newProtocolOp
containing a fully decoded LDAP message.static LdapMessage
LdapMessage. newRequestMessage(int messageId, Request request)
Builds and returns anLdapMessage
containing aRequest
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, BindResult response)
Builds and returns anLdapMessage
containing aBindResult
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, CompareResult response)
Builds and returns anLdapMessage
containing aCompareResult
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, ExtendedResult response)
Builds and returns anLdapMessage
containing aExtendedResult
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, IntermediateResponse response)
Builds and returns anLdapMessage
containing aIntermediateResponse
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, Request forRequest, Response response)
Builds and returns anLdapMessage
containing aResponse
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, SearchResultEntry response)
Builds and returns anLdapMessage
containing aSearchResultEntry
.static LdapMessage
LdapMessage. newResponseMessage(int messageId, SearchResultReference response)
Builds and returns anLdapMessage
containing aSearchResultReference
.LdapMessage
LdapMessage. newResponseMessage(Response response)
Returns a newLdapMessage
containing the providedResponse
.static LdapMessage
LdapMessage. newSearchResultDoneMessage(int messageId, Result result)
Builds and returns anLdapMessage
for a search result done operation type.
-