Package | Description |
---|---|
org.forgerock.opendj.io |
Classes and interfaces providing I/O functionality.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
LdapWriter.writeCompareRequest(int messageID,
CompareRequest request)
Writes the provided compare request.
|
Modifier and Type | Method and Description |
---|---|
default io.reactivex.Single<CompareResult> |
LdapClientSocket.compare(CompareRequest request)
Asynchronously compares an entry in the Directory Server using the provided compare request.
|
CompareResult |
Connection.compare(CompareRequest request)
Compares an entry in the Directory Server using the provided compare
request.
|
CompareResult |
AbstractConnectionWrapper.compare(CompareRequest request)
Compares an entry in the Directory Server using the provided compare
request.
|
CompareResult |
AbstractAsynchronousConnection.compare(CompareRequest request) |
LdapPromise<CompareResult> |
Connection.compareAsync(CompareRequest request)
Asynchronously compares an entry in the Directory Server using the
provided compare request.
|
LdapPromise<CompareResult> |
AbstractConnectionWrapper.compareAsync(CompareRequest request)
Asynchronously compares an entry in the Directory Server using the
provided compare request.
|
LdapPromise<CompareResult> |
AbstractConnection.compareAsync(CompareRequest request) |
LdapPromise<CompareResult> |
Connection.compareAsync(CompareRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously compares an entry in the Directory Server using the
provided compare request.
|
LdapPromise<CompareResult> |
AbstractSynchronousConnection.compareAsync(CompareRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
LdapPromise<CompareResult> |
AbstractConnectionWrapper.compareAsync(CompareRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously compares an entry in the Directory Server using the
provided compare request.
|
Modifier and Type | Method and Description |
---|---|
CompareRequest |
CompareRequest.addControl(Control control) |
CompareRequest |
CompareRequest.addControls(Iterable<? extends Control> controls) |
static CompareRequest |
Requests.copyOfCompareRequest(CompareRequest request)
Creates a new compare request that is an exact copy of the provided
request.
|
static CompareRequest |
Requests.newCompareRequest(Dn name,
AttributeDescription attributeDescription,
Object assertionValue)
Creates a new compare request using the provided distinguished name,
attribute name, and assertion value.
|
static CompareRequest |
Requests.newCompareRequest(String name,
String attributeDescription,
Object assertionValue)
Creates a new compare request using the provided distinguished name,
attribute name, and assertion value decoded using the default schema.
|
CompareRequest |
CompareRequest.setAssertionValue(Object value)
Sets the assertion value to be compared.
|
CompareRequest |
CompareRequest.setAttributeDescription(AttributeDescription attributeDescription)
Sets the name of the attribute to be compared.
|
CompareRequest |
CompareRequest.setAttributeDescription(String attributeDescription)
Sets the name of the attribute to be compared.
|
CompareRequest |
CompareRequest.setName(Dn dn)
Sets the distinguished name of the entry to be compared.
|
CompareRequest |
CompareRequest.setName(String dn)
Sets the distinguished name of the entry to be compared.
|
static CompareRequest |
Requests.unmodifiableCompareRequest(CompareRequest request)
Creates an unmodifiable compare request of the provided request.
|
Modifier and Type | Method and Description |
---|---|
static CompareRequest |
Requests.copyOfCompareRequest(CompareRequest request)
Creates a new compare request that is an exact copy of the provided
request.
|
static CompareRequest |
Requests.unmodifiableCompareRequest(CompareRequest request)
Creates an unmodifiable compare request of the provided request.
|
R |
RequestVisitor.visitRequest(P p,
CompareRequest request)
Visits an
Compare request. |
R |
AbstractRequestVisitor.visitRequest(P p,
CompareRequest request) |
Copyright © 2010-2018, ForgeRock All Rights Reserved.