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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
io.reactivex.Flowable<LdapMessage> |
LdapSocket.reader()
Returns a
Flowable of LDAP messages read from the network. |
org.reactivestreams.Processor<LdapMessage,LdapMessage> |
LdapSocket.writer()
Returns a
Processor which will write all LdapMessage it receives to the network. |
org.reactivestreams.Processor<LdapMessage,LdapMessage> |
LdapSocket.writer()
Returns a
Processor which will write all LdapMessage it receives to the network. |
Modifier and Type | Method and Description |
---|---|
void |
LdapWriter.writeLdapMessage(LdapMessage ldapMessage)
Writes the provided LDAP message.
|
Modifier and Type | Method and Description |
---|---|
static LdapMessage |
LdapMessage.newLdapMessage(int messageId,
byte protocolOpType,
ProtocolOp protocolOp)
Creates a new
ProtocolOp containing a fully decoded LDAP message. |
static LdapMessage |
LdapMessage.newRequestMessage(int messageId,
Request request)
Builds and returns an
LdapMessage containing a Request . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
BindResult response)
Builds and returns an
LdapMessage containing a BindResult . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
CompareResult response)
Builds and returns an
LdapMessage containing a CompareResult . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
ExtendedResult response)
Builds and returns an
LdapMessage containing a ExtendedResult . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
IntermediateResponse response)
Builds and returns an
LdapMessage containing a IntermediateResponse . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
Request forRequest,
Response response)
Builds and returns an
LdapMessage containing a Response . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
SearchResultEntry response)
Builds and returns an
LdapMessage containing a SearchResultEntry . |
static LdapMessage |
LdapMessage.newResponseMessage(int messageId,
SearchResultReference response)
Builds and returns an
LdapMessage containing a SearchResultReference . |
static LdapMessage |
LdapMessage.newSearchResultDoneMessage(int messageId,
Result result)
Builds and returns an
LdapMessage for a search result done operation type. |
Copyright © 2010-2018, ForgeRock All Rights Reserved.