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 voidLdapWriter. 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 ResultAbstractAsynchronousConnection. delete(DeleteRequest request)ResultAbstractConnectionWrapper. delete(DeleteRequest request)Deletes an entry from the Directory Server using the provided delete request.ResultConnection. 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 DeleteRequestDeleteRequest. addControl(Control control)DeleteRequestDeleteRequest. addControls(Iterable<? extends Control> controls)static DeleteRequestRequests. copyOfDeleteRequest(DeleteRequest request)Creates a new delete request that is an exact copy of the provided request.static DeleteRequestRequests. newDeleteRequest(String name)Creates a new delete request using the provided distinguished name decoded using the default schema.static DeleteRequestRequests. newDeleteRequest(Dn name)Creates a new delete request using the provided distinguished name.DeleteRequestDeleteRequest. setName(String dn)Sets the distinguished name of the entry to be deleted.DeleteRequestDeleteRequest. setName(Dn dn)Sets the distinguished name of the entry to be deleted.static DeleteRequestRequests. 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 DeleteRequestRequests. copyOfDeleteRequest(DeleteRequest request)Creates a new delete request that is an exact copy of the provided request.static DeleteRequestRequests. unmodifiableDeleteRequest(DeleteRequest request)Creates an unmodifiable delete request of the provided request.RAbstractRequestVisitor. visitRequest(P p, DeleteRequest request)RRequestVisitor. visitRequest(P p, DeleteRequest request)Visits anDeleterequest. -
Uses of DeleteRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type DeleteRequest Modifier and Type Method Description voidRejectedChangeRecordListener. handleRejectedChangeRecord(DeleteRequest change, LocalizableMessage reason)Invoked when an attempt to delete an entry was rejected.abstract RChangeRecordVisitor. visitRequest(P p, DeleteRequest request)ChangeRecordWriterChangeRecordWriter. writeChangeRecord(DeleteRequest change)Writes aDeletechange record.ConnectionChangeRecordWriterConnectionChangeRecordWriter. writeChangeRecord(DeleteRequest change)Writes the provided Delete request to the underlying connection, blocking until the request completes.LdifChangeRecordWriterLdifChangeRecordWriter. 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 voidTypedProtocolOpFilter. 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 voidAccessLogger. logDeleteRequest(RequestContext context, DeleteRequest request)Writes a message to the access logger with information about the provided delete request.voidAccessLogPublisher. logDeleteRequest(RequestContext context, DeleteRequest request)Writes a message to the access logger with information about the delete request.voidTextAccessLogPublisher. logDeleteRequest(RequestContext context, DeleteRequest request)static voidAccessLogger. logDeleteResult(RequestContext context, DeleteRequest request, Result result)Writes a message to the access logger with information about the provided delete result.voidAccessLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)Writes a message to the access logger with information about the delete result.voidTextAccessLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)voidTextAuditLogPublisher. 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 DeleteRequestDeleteMsg. createRequest(Dn newDN)
-