Uses of Interface
org.forgerock.opendj.ldap.messages.DeleteRequest
-
Packages that use DeleteRequest 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.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF.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.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information. -
-
Uses of DeleteRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type DeleteRequest Modifier and Type Method Description void
LdapWriter. writeDeleteRequest(int messageID, DeleteRequest request)
Writes the provided delete request. -
Uses of DeleteRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type DeleteRequest Modifier and Type Method Description Result
AbstractAsynchronousConnection. delete(DeleteRequest request)
Result
AbstractConnectionWrapper. delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.Result
Connection. delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.default Single<Result>
LdapClientSocket. delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
AbstractConnection. deleteAsync(DeleteRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. deleteAsync(DeleteRequest request)
Asynchronously deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
AbstractConnectionWrapper. deleteAsync(DeleteRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
AbstractSynchronousConnection. deleteAsync(DeleteRequest request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
Connection. deleteAsync(DeleteRequest request)
Asynchronously deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
Connection. deleteAsync(DeleteRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously deletes an entry from the Directory Server using the provided delete request. -
Uses of DeleteRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return DeleteRequest Modifier and Type Method Description DeleteRequest
DeleteRequest. addControl(Control control)
DeleteRequest
DeleteRequest. addControls(Iterable<? extends Control> controls)
static DeleteRequest
Requests. copyOfDeleteRequest(DeleteRequest request)
Creates a new delete request that is an exact copy of the provided request.static DeleteRequest
Requests. newDeleteRequest(String name)
Creates a new delete request using the provided distinguished name decoded using the default schema.static DeleteRequest
Requests. newDeleteRequest(Dn name)
Creates a new delete request using the provided distinguished name.DeleteRequest
DeleteRequest. setName(String dn)
Sets the distinguished name of the entry to be deleted.DeleteRequest
DeleteRequest. setName(Dn dn)
Sets the distinguished name of the entry to be deleted.static DeleteRequest
Requests. unmodifiableDeleteRequest(DeleteRequest request)
Creates an unmodifiable delete request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type DeleteRequest Modifier and Type Method Description static DeleteRequest
Requests. copyOfDeleteRequest(DeleteRequest request)
Creates a new delete request that is an exact copy of the provided request.static DeleteRequest
Requests. unmodifiableDeleteRequest(DeleteRequest request)
Creates an unmodifiable delete request of the provided request.R
AbstractRequestVisitor. visitRequest(P p, DeleteRequest request)
R
RequestVisitor. visitRequest(P p, DeleteRequest request)
Visits anDelete
request. -
Uses of DeleteRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type DeleteRequest Modifier and Type Method Description void
RejectedChangeRecordListener. handleRejectedChangeRecord(DeleteRequest change, LocalizableMessage reason)
Invoked when an attempt to delete an entry was rejected.abstract R
ChangeRecordVisitor. visitRequest(P p, DeleteRequest request)
ChangeRecordWriter
ChangeRecordWriter. writeChangeRecord(DeleteRequest change)
Writes aDelete
change record.ConnectionChangeRecordWriter
ConnectionChangeRecordWriter. writeChangeRecord(DeleteRequest change)
Writes the provided Delete request to the underlying connection, blocking until the request completes.LdifChangeRecordWriter
LdifChangeRecordWriter. writeChangeRecord(DeleteRequest change)
-
Uses of DeleteRequest in org.opends.server.api
Methods in org.opends.server.api with parameters of type DeleteRequest Modifier and Type Method Description protected Flowable<Response>
TypedProtocolOpFilter. filterDelete(org.forgerock.services.context.Context context, DeleteRequest request, RequestHandler next)
Forwards the request to the next handler in the chain.protected Flowable<Response>
TypedRequestFilter. filterDelete(org.forgerock.services.context.Context context, DeleteRequest request, RequestHandler next)
Filters delete requests and their responses.protected void
TypedProtocolOpFilter. filterDeleteResponse(org.forgerock.services.context.Context context, DeleteRequest request, Response response)
Implements the behavior for all the responses of a DeleteRequest.protected Flowable<Response>
TypedRequestHandler. handleDelete(org.forgerock.services.context.Context context, DeleteRequest request)
Implements the specific behavior for all DeleteRequest.Flowable<Response>
TypedRequestHandler. visitRequest(org.forgerock.services.context.Context context, DeleteRequest request)
-
Uses of DeleteRequest in org.opends.server.core
Constructors in org.opends.server.core with parameters of type DeleteRequest Constructor Description DeleteOperation(org.forgerock.services.context.Context context, DeleteRequest deleteRequest)
Creates a new delete operation with the provided information. -
Uses of DeleteRequest in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type DeleteRequest Modifier and Type Method Description static void
AccessLogger. logDeleteRequest(RequestContext context, DeleteRequest request)
Writes a message to the access logger with information about the provided delete request.void
AccessLogPublisher. logDeleteRequest(RequestContext context, DeleteRequest request)
Writes a message to the access logger with information about the delete request.void
TextAccessLogPublisher. logDeleteRequest(RequestContext context, DeleteRequest request)
static void
AccessLogger. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
Writes a message to the access logger with information about the provided delete result.void
AccessLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
Writes a message to the access logger with information about the delete result.void
TextAccessLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
void
TextAuditLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
-
Uses of DeleteRequest in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return DeleteRequest Modifier and Type Method Description DeleteRequest
DeleteMsg. createRequest(Dn newDN)
-