Uses of Class
org.forgerock.opendj.ldap.messages.ModifyDnRequest
Package
Description
Classes and interfaces providing I/O functionality.
Classes and interfaces for core types including connections, entries, and
attributes.
Classes and interfaces for core LDAP requests/responses.
Classes and interfaces for reading and writing LDIF.
Contains various classes that comprise the core of the Directory Server codebase.
Contains implementations of Directory Server access, error, and debug loggers.
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
Modifier and TypeMethodDescriptionvoid
LdapWriter.writeModifyDnRequest
(int messageID, ModifyDnRequest request) Writes the provided modify DN request. -
Uses of ModifyDnRequest in org.forgerock.opendj.ldap
Modifier and TypeMethodDescriptionAbstractAsynchronousConnection.modifyDn
(ModifyDnRequest request) AbstractConnectionWrapper.modifyDn
(ModifyDnRequest request) Renames an entry in the Directory Server using the provided modify DN request.Connection.modifyDn
(ModifyDnRequest request) Renames an entry in the Directory Server using the provided modify DN request.LdapClientSocket.modifyDn
(ModifyDnRequest request) Renames an entry in the Directory Server using the provided modify DN request.AbstractConnection.modifyDnAsync
(ModifyDnRequest request) AbstractConnectionWrapper.modifyDnAsync
(ModifyDnRequest request) Asynchronously renames an entry in the Directory Server using the provided modify DN request.AbstractConnectionWrapper.modifyDnAsync
(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler) Asynchronously renames an entry in the Directory Server using the provided modify DN request.AbstractSynchronousConnection.modifyDnAsync
(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler) Connection.modifyDnAsync
(ModifyDnRequest request) Asynchronously renames an entry in the Directory Server using the provided modify DN request.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
Modifier and TypeMethodDescriptionstatic 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.setDeleteOldRdn
(boolean deleteOldRdn) Specifies whether the old RDN attribute values are to be retained as attributes of the entry or deleted from the entry.Sets the distinguished name of the entry to be renamed.Sets the distinguished name of the entry to be renamed.Sets the new RDN of the entry to be renamed.Sets the new RDN of the entry to be renamed.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.setNewSuperior
(Dn dn) Sets the distinguished name of an existing entry that will become the immediate superior (parent) of the entry to be renamed.Modifier and TypeMethodDescriptionstatic ModifyDnRequest
Requests.copyOfModifyDnRequest
(ModifyDnRequest request) Creates a new modify DN request that is an exact copy of the provided request.AbstractRequestVisitor.visitRequest
(P p, ModifyDnRequest request) RequestVisitor.visitRequest
(P p, ModifyDnRequest request) Visits anModifyDN
request. -
Uses of ModifyDnRequest in org.forgerock.opendj.ldif
Modifier and TypeMethodDescriptionRejectedChangeRecordListener.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.writeChangeRecord
(ModifyDnRequest change) Writes aModifyDN
change record.ConnectionChangeRecordWriter.writeChangeRecord
(ModifyDnRequest change) Writes the provided ModifyDN request to the underlying connection, blocking until the request completes.LdifChangeRecordWriter.writeChangeRecord
(ModifyDnRequest change) -
Uses of ModifyDnRequest in org.opends.server.core
ModifierConstructorDescriptionModifyDnOperation
(RequestContext context, LocalBackend<?> backend, ModifyDnRequest request, Consumer<ResponseStream> out) Creates a new modify DN operation. -
Uses of ModifyDnRequest in org.opends.server.loggers
Modifier and TypeMethodDescriptionvoid
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) 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