Uses of Interface
org.forgerock.opendj.ldap.messages.ModifyDnRequest
-
Packages that use ModifyDnRequest 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 ModifyDnRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type ModifyDnRequest Modifier and Type Method Description voidLdapWriter. writeModifyDnRequest(int messageID, ModifyDnRequest request)Writes the provided modify DN request. -
Uses of ModifyDnRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type ModifyDnRequest Modifier and Type Method Description ResultAbstractAsynchronousConnection. modifyDn(ModifyDnRequest request)ResultAbstractConnectionWrapper. modifyDn(ModifyDnRequest request)Renames an entry in the Directory Server using the provided modify DN request.ResultConnection. modifyDn(ModifyDnRequest request)Renames an entry in the Directory Server using the provided modify DN request.default Single<Result>LdapClientSocket. modifyDn(ModifyDnRequest request)Renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>AbstractConnection. modifyDnAsync(ModifyDnRequest request)LdapPromise<Result>AbstractConnectionWrapper. modifyDnAsync(ModifyDnRequest request)Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>AbstractConnectionWrapper. modifyDnAsync(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler)Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>AbstractSynchronousConnection. modifyDnAsync(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler)LdapPromise<Result>Connection. modifyDnAsync(ModifyDnRequest request)Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>Connection. modifyDnAsync(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler)Asynchronously renames an entry in the Directory Server using the provided modify DN request. -
Uses of ModifyDnRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return ModifyDnRequest Modifier and Type Method Description ModifyDnRequestModifyDnRequest. addControl(Control control)ModifyDnRequestModifyDnRequest. addControls(Iterable<? extends Control> controls)static ModifyDnRequestRequests. copyOfModifyDnRequest(ModifyDnRequest request)Creates a new modify DN request that is an exact copy of the provided request.static ModifyDnRequestRequests. newModifyDnRequest(String name, String newRDN)Creates a new modify DN request using the provided distinguished name and new RDN decoded using the default schema.static ModifyDnRequestRequests. newModifyDnRequest(Dn name, Rdn newRDN)Creates a new modify DN request using the provided distinguished name and new RDN.ModifyDnRequestModifyDnRequest. setDeleteOldRdn(boolean deleteOldRdn)Specifies whether the old RDN attribute values are to be retained as attributes of the entry or deleted from the entry.ModifyDnRequestModifyDnRequest. setName(String dn)Sets the distinguished name of the entry to be renamed.ModifyDnRequestModifyDnRequest. setName(Dn dn)Sets the distinguished name of the entry to be renamed.ModifyDnRequestModifyDnRequest. setNewRdn(String rdn)Sets the new RDN of the entry to be renamed.ModifyDnRequestModifyDnRequest. setNewRdn(Rdn rdn)Sets the new RDN of the entry to be renamed.ModifyDnRequestModifyDnRequest. setNewSuperior(String dn)Sets the distinguished name of an existing entry that will become the immediate superior (parent) of the entry to be renamed.ModifyDnRequestModifyDnRequest. setNewSuperior(Dn dn)Sets the distinguished name of an existing entry that will become the immediate superior (parent) of the entry to be renamed.static ModifyDnRequestRequests. unmodifiableModifyDnRequest(ModifyDnRequest request)Creates an unmodifiable modify DN request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type ModifyDnRequest Modifier and Type Method Description static ModifyDnRequestRequests. copyOfModifyDnRequest(ModifyDnRequest request)Creates a new modify DN request that is an exact copy of the provided request.static ModifyDnRequestRequests. unmodifiableModifyDnRequest(ModifyDnRequest request)Creates an unmodifiable modify DN request of the provided request.RAbstractRequestVisitor. visitRequest(P p, ModifyDnRequest request)RRequestVisitor. visitRequest(P p, ModifyDnRequest request)Visits anModifyDNrequest. -
Uses of ModifyDnRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type ModifyDnRequest Modifier and Type Method Description EntryRejectedChangeRecordListener. handleDuplicateEntry(ModifyDnRequest change, Entry existingEntry, Entry renamedEntry)Invoked when an attempt was made to rename an entry which already exists.voidRejectedChangeRecordListener. handleRejectedChangeRecord(ModifyDnRequest change, LocalizableMessage reason)Invoked when an attempt to rename an entry was rejected.abstract RChangeRecordVisitor. visitRequest(P p, ModifyDnRequest request)ChangeRecordWriterChangeRecordWriter. writeChangeRecord(ModifyDnRequest change)Writes aModifyDNchange record.ConnectionChangeRecordWriterConnectionChangeRecordWriter. writeChangeRecord(ModifyDnRequest change)Writes the provided ModifyDN request to the underlying connection, blocking until the request completes.LdifChangeRecordWriterLdifChangeRecordWriter. writeChangeRecord(ModifyDnRequest change) -
Uses of ModifyDnRequest in org.opends.server.api
Methods in org.opends.server.api with parameters of type ModifyDnRequest Modifier and Type Method Description protected Flowable<Response>TypedProtocolOpFilter. filterModifyDn(org.forgerock.services.context.Context context, ModifyDnRequest request, RequestHandler next)Forwards the request to the next handler in the chain.protected Flowable<Response>TypedRequestFilter. filterModifyDn(org.forgerock.services.context.Context context, ModifyDnRequest request, RequestHandler next)Filters modify-dn requests and their responses.protected voidTypedProtocolOpFilter. filterModifyDnResponse(org.forgerock.services.context.Context context, ModifyDnRequest request, Response response)Implements the behavior for all the responses of a ModifyDnRequest.protected Flowable<Response>TypedRequestHandler. handleModifyDn(org.forgerock.services.context.Context context, ModifyDnRequest request)Implements the specific behavior for all ModifyDnRequest.Flowable<Response>TypedRequestHandler. visitRequest(org.forgerock.services.context.Context context, ModifyDnRequest request) -
Uses of ModifyDnRequest in org.opends.server.core
Constructors in org.opends.server.core with parameters of type ModifyDnRequest Constructor Description ModifyDnOperation(org.forgerock.services.context.Context context, ModifyDnRequest modifyDNRequest)Creates a new modify DN operation with the provided information. -
Uses of ModifyDnRequest in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type ModifyDnRequest Modifier and Type Method Description static voidAccessLogger. logModifyDnRequest(RequestContext context, ModifyDnRequest request)Writes a message to the access logger with information about the provided modifyDN request.voidAccessLogPublisher. logModifyDnRequest(RequestContext context, ModifyDnRequest request)Writes a message to the access logger with information about the modifyDN request.voidTextAccessLogPublisher. logModifyDnRequest(RequestContext context, ModifyDnRequest request)static voidAccessLogger. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)Writes a message to the access logger with information about the provided modifyDN result.voidAccessLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)Writes a message to the access logger with information about the modifyDN result.voidTextAccessLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)voidTextAuditLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result) -
Uses of ModifyDnRequest in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return ModifyDnRequest Modifier and Type Method Description ModifyDnRequestModifyDNMsg. createRequest(Dn newDN)
-