Uses of Interface
org.forgerock.opendj.ldap.messages.AbandonRequest
-
Packages that use AbandonRequest 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 AbandonRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type AbandonRequest Modifier and Type Method Description void
LdapWriter. writeAbandonRequest(int messageID, AbandonRequest request)
Writes the provided abandon request. -
Uses of AbandonRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type AbandonRequest Modifier and Type Method Description LdapPromise<Void>
AbstractConnectionWrapper. abandonAsync(AbandonRequest request)
Abandons the unfinished operation identified in the provided abandon request.LdapPromise<Void>
AbstractSynchronousConnection. abandonAsync(AbandonRequest request)
Abandon operations are not supported because operations are performed synchronously and the ID of the request to be abandoned cannot be determined.LdapPromise<Void>
Connection. abandonAsync(AbandonRequest request)
Abandons the unfinished operation identified in the provided abandon request. -
Uses of AbandonRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return AbandonRequest Modifier and Type Method Description AbandonRequest
AbandonRequest. addControl(Control control)
AbandonRequest
AbandonRequest. addControls(Iterable<? extends Control> controls)
static AbandonRequest
Requests. copyOfAbandonRequest(AbandonRequest request)
Creates a new abandon request that is an exact copy of the provided request.static AbandonRequest
Requests. newAbandonRequest(int requestID)
Creates a new abandon request using the provided message ID.AbandonRequest
AbandonRequest. setRequestId(int id)
Sets the request ID of the request to be abandoned.static AbandonRequest
Requests. unmodifiableAbandonRequest(AbandonRequest request)
Creates an unmodifiable abandon request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type AbandonRequest Modifier and Type Method Description static AbandonRequest
Requests. copyOfAbandonRequest(AbandonRequest request)
Creates a new abandon request that is an exact copy of the provided request.static AbandonRequest
Requests. unmodifiableAbandonRequest(AbandonRequest request)
Creates an unmodifiable abandon request of the provided request.R
AbstractRequestVisitor. visitRequest(P p, AbandonRequest request)
R
RequestVisitor. visitRequest(P p, AbandonRequest request)
Visits anAbandon
request. -
Uses of AbandonRequest in org.opends.server.api
Methods in org.opends.server.api with parameters of type AbandonRequest Modifier and Type Method Description protected Flowable<Response>
TypedProtocolOpFilter. filterAbandon(org.forgerock.services.context.Context context, AbandonRequest request, RequestHandler next)
Forwards the request to the next handler in the chain.protected Flowable<Response>
TypedRequestFilter. filterAbandon(org.forgerock.services.context.Context context, AbandonRequest request, RequestHandler next)
Filters abandon requests and their responses.protected void
TypedProtocolOpFilter. filterAbandonResponse(org.forgerock.services.context.Context context, AbandonRequest request, Response response)
Implements the behavior for all the responses of an AbandonRequest.protected Flowable<Response>
TypedRequestHandler. handleAbandon(org.forgerock.services.context.Context context, AbandonRequest request)
Implements the specific behavior for all AbandonRequest.Flowable<Response>
TypedRequestHandler. visitRequest(org.forgerock.services.context.Context context, AbandonRequest request)
-
Uses of AbandonRequest in org.opends.server.core
Constructors in org.opends.server.core with parameters of type AbandonRequest Constructor Description AbandonOperation(org.forgerock.services.context.Context context, AbandonRequest request)
Creates a new abandon operation with the provided information. -
Uses of AbandonRequest in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type AbandonRequest Modifier and Type Method Description static void
AccessLogger. logAbandonRequest(RequestContext context, AbandonRequest request)
Writes a message to the access logger with information about the provided abandon request.void
AccessLogPublisher. logAbandonRequest(RequestContext context, AbandonRequest request)
Writes a message to the access logger with information about the provided abandon request.void
TextAccessLogPublisher. logAbandonRequest(RequestContext context, AbandonRequest request)
static void
AccessLogger. logAbandonResult(RequestContext context, AbandonRequest request, Result result)
Writes a message to the access logger with information about the provided result.void
AccessLogPublisher. logAbandonResult(RequestContext context, AbandonRequest request, Result result)
Writes a message to the access logger with information about the provided result.void
TextAccessLogPublisher. logAbandonResult(RequestContext context, AbandonRequest request, Result result)
-