Uses of Interface
org.forgerock.opendj.ldap.messages.CompareRequest
-
Packages that use CompareRequest 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.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.loggers Contains implementations of Directory Server access, error, and debug loggers. -
-
Uses of CompareRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type CompareRequest Modifier and Type Method Description voidLdapWriter. writeCompareRequest(int messageID, CompareRequest request)Writes the provided compare request. -
Uses of CompareRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type CompareRequest Modifier and Type Method Description CompareResultAbstractAsynchronousConnection. compare(CompareRequest request)CompareResultAbstractConnectionWrapper. compare(CompareRequest request)Compares an entry in the Directory Server using the provided compare request.CompareResultConnection. compare(CompareRequest request)Compares an entry in the Directory Server using the provided compare request.default Single<CompareResult>LdapClientSocket. compare(CompareRequest request)Asynchronously compares an entry in the Directory Server using the provided compare request.LdapPromise<CompareResult>AbstractConnection. compareAsync(CompareRequest request)LdapPromise<CompareResult>AbstractConnectionWrapper. compareAsync(CompareRequest request)Asynchronously compares an entry in the Directory Server using the provided compare request.LdapPromise<CompareResult>AbstractConnectionWrapper. 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>Connection. compareAsync(CompareRequest request)Asynchronously compares an entry in the Directory Server using the provided compare request.LdapPromise<CompareResult>Connection. compareAsync(CompareRequest request, IntermediateResponseHandler intermediateResponseHandler)Asynchronously compares an entry in the Directory Server using the provided compare request. -
Uses of CompareRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return CompareRequest Modifier and Type Method Description CompareRequestCompareRequest. addControl(Control control)CompareRequestCompareRequest. addControls(Iterable<? extends Control> controls)static CompareRequestRequests. copyOfCompareRequest(CompareRequest request)Creates a new compare request that is an exact copy of the provided request.static CompareRequestRequests. 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.static CompareRequestRequests. newCompareRequest(Dn name, AttributeDescription attributeDescription, Object assertionValue)Creates a new compare request using the provided distinguished name, attribute name, and assertion value.CompareRequestCompareRequest. setAssertionValue(Object value)Sets the assertion value to be compared.CompareRequestCompareRequest. setAttributeDescription(String attributeDescription)Sets the name of the attribute to be compared.CompareRequestCompareRequest. setAttributeDescription(AttributeDescription attributeDescription)Sets the name of the attribute to be compared.CompareRequestCompareRequest. setName(String dn)Sets the distinguished name of the entry to be compared.CompareRequestCompareRequest. setName(Dn dn)Sets the distinguished name of the entry to be compared.static CompareRequestRequests. unmodifiableCompareRequest(CompareRequest request)Creates an unmodifiable compare request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type CompareRequest Modifier and Type Method Description static CompareRequestRequests. copyOfCompareRequest(CompareRequest request)Creates a new compare request that is an exact copy of the provided request.static CompareRequestRequests. unmodifiableCompareRequest(CompareRequest request)Creates an unmodifiable compare request of the provided request.RAbstractRequestVisitor. visitRequest(P p, CompareRequest request)RRequestVisitor. visitRequest(P p, CompareRequest request)Visits anComparerequest. -
Uses of CompareRequest in org.opends.server.api
Methods in org.opends.server.api with parameters of type CompareRequest Modifier and Type Method Description protected Flowable<Response>TypedProtocolOpFilter. filterCompare(org.forgerock.services.context.Context context, CompareRequest request, RequestHandler next)Forwards the request to the next handler in the chain.protected Flowable<Response>TypedRequestFilter. filterCompare(org.forgerock.services.context.Context context, CompareRequest request, RequestHandler next)Filters compare requests and their responses.protected voidTypedProtocolOpFilter. filterCompareResponse(org.forgerock.services.context.Context context, CompareRequest request, Response response)Implements the behavior for all the responses of a CompareRequest.protected Flowable<Response>TypedRequestHandler. handleCompare(org.forgerock.services.context.Context context, CompareRequest request)Implements the specific behavior for all CompareRequest.Flowable<Response>TypedRequestHandler. visitRequest(org.forgerock.services.context.Context context, CompareRequest request) -
Uses of CompareRequest in org.opends.server.core
Constructors in org.opends.server.core with parameters of type CompareRequest Constructor Description CompareOperation(org.forgerock.services.context.Context context, CompareRequest compareRequest)Creates a new compare operation with the provided information. -
Uses of CompareRequest in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type CompareRequest Modifier and Type Method Description static voidAccessLogger. logCompareRequest(RequestContext context, CompareRequest request)Writes a message to the access logger with information about the provided compare request.voidAccessLogPublisher. logCompareRequest(RequestContext context, CompareRequest request)Writes a message to the access logger with information about the compare request.voidTextAccessLogPublisher. logCompareRequest(RequestContext context, CompareRequest request)static voidAccessLogger. logCompareResult(RequestContext context, CompareRequest request, Result result)Writes a message to the access logger with information about the provided compare result.voidAccessLogPublisher. logCompareResult(RequestContext context, CompareRequest request, Result result)Writes a message to the access logger with information about the compare result.voidTextAccessLogPublisher. logCompareResult(RequestContext context, CompareRequest request, Result result)
-