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 void
LdapWriter. 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 Result
AbstractAsynchronousConnection. modifyDn(ModifyDnRequest request)
Result
AbstractConnectionWrapper. modifyDn(ModifyDnRequest request)
Renames an entry in the Directory Server using the provided modify DN request.Result
Connection. 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 ModifyDnRequest
ModifyDnRequest. addControl(Control control)
ModifyDnRequest
ModifyDnRequest. addControls(Iterable<? extends Control> controls)
static ModifyDnRequest
Requests. copyOfModifyDnRequest(ModifyDnRequest request)
Creates a new modify DN request that is an exact copy of the provided request.static ModifyDnRequest
Requests. 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 ModifyDnRequest
Requests. newModifyDnRequest(Dn name, Rdn newRDN)
Creates a new modify DN request using the provided distinguished name and new RDN.ModifyDnRequest
ModifyDnRequest. setDeleteOldRdn(boolean deleteOldRdn)
Specifies whether the old RDN attribute values are to be retained as attributes of the entry or deleted from the entry.ModifyDnRequest
ModifyDnRequest. setName(String dn)
Sets the distinguished name of the entry to be renamed.ModifyDnRequest
ModifyDnRequest. setName(Dn dn)
Sets the distinguished name of the entry to be renamed.ModifyDnRequest
ModifyDnRequest. setNewRdn(String rdn)
Sets the new RDN of the entry to be renamed.ModifyDnRequest
ModifyDnRequest. setNewRdn(Rdn rdn)
Sets the new RDN of the entry to be renamed.ModifyDnRequest
ModifyDnRequest. setNewSuperior(String dn)
Sets the distinguished name of an existing entry that will become the immediate superior (parent) of the entry to be renamed.ModifyDnRequest
ModifyDnRequest. 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 ModifyDnRequest
Requests. 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 ModifyDnRequest
Requests. copyOfModifyDnRequest(ModifyDnRequest request)
Creates a new modify DN request that is an exact copy of the provided request.static ModifyDnRequest
Requests. unmodifiableModifyDnRequest(ModifyDnRequest request)
Creates an unmodifiable modify DN request of the provided request.R
AbstractRequestVisitor. visitRequest(P p, ModifyDnRequest request)
R
RequestVisitor. visitRequest(P p, ModifyDnRequest request)
Visits anModifyDN
request. -
Uses of ModifyDnRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type ModifyDnRequest Modifier and Type Method Description Entry
RejectedChangeRecordListener. handleDuplicateEntry(ModifyDnRequest change, Entry existingEntry, Entry renamedEntry)
Invoked when an attempt was made to rename an entry which already exists.void
RejectedChangeRecordListener. handleRejectedChangeRecord(ModifyDnRequest change, LocalizableMessage reason)
Invoked when an attempt to rename an entry was rejected.abstract R
ChangeRecordVisitor. visitRequest(P p, ModifyDnRequest request)
ChangeRecordWriter
ChangeRecordWriter. writeChangeRecord(ModifyDnRequest change)
Writes aModifyDN
change record.ConnectionChangeRecordWriter
ConnectionChangeRecordWriter. writeChangeRecord(ModifyDnRequest change)
Writes the provided ModifyDN request to the underlying connection, blocking until the request completes.LdifChangeRecordWriter
LdifChangeRecordWriter. 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 void
TypedProtocolOpFilter. 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 void
AccessLogger. logModifyDnRequest(RequestContext context, ModifyDnRequest request)
Writes a message to the access logger with information about the provided modifyDN request.void
AccessLogPublisher. logModifyDnRequest(RequestContext context, ModifyDnRequest request)
Writes a message to the access logger with information about the modifyDN request.void
TextAccessLogPublisher. logModifyDnRequest(RequestContext context, ModifyDnRequest request)
static void
AccessLogger. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
Writes a message to the access logger with information about the provided modifyDN result.void
AccessLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
Writes a message to the access logger with information about the modifyDN result.void
TextAccessLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
void
TextAuditLogPublisher. 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 ModifyDnRequest
ModifyDNMsg. createRequest(Dn newDN)
-