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.guitools.controlpanel.browser |
Defines the main classes that are you used by the entry browser of the Control Panel.
|
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.protocols.http |
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using HTTP.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
LdapWriter.writeModifyDnRequest(int messageID,
ModifyDnRequest request)
Writes the provided modify DN request.
|
Modifier and Type | Method and Description |
---|---|
Result |
Connection.modifyDn(ModifyDnRequest request)
Renames an entry in the Directory Server using the provided modify DN
request.
|
Result |
AbstractConnectionWrapper.modifyDn(ModifyDnRequest request)
Renames an entry in the Directory Server using the provided modify DN
request.
|
Result |
AbstractAsynchronousConnection.modifyDn(ModifyDnRequest request) |
LdapPromise<Result> |
Connection.modifyDnAsync(ModifyDnRequest request)
Asynchronously renames an entry in the Directory Server using the
provided modify DN request.
|
LdapPromise<Result> |
AbstractConnectionWrapper.modifyDnAsync(ModifyDnRequest request)
Asynchronously renames an entry in the Directory Server using the
provided modify DN request.
|
LdapPromise<Result> |
AbstractConnection.modifyDnAsync(ModifyDnRequest request) |
LdapPromise<Result> |
Connection.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> |
AbstractConnectionWrapper.modifyDnAsync(ModifyDnRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously renames an entry in the Directory Server using the
provided modify DN request.
|
Modifier and Type | Method and Description |
---|---|
ModifyDnRequest |
ModifyDnRequest.addControl(Control control) |
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(Dn name,
Rdn newRDN)
Creates a new modify DN request using the provided distinguished name and
new RDN.
|
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.
|
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(Dn dn)
Sets the distinguished name of the entry to be renamed.
|
ModifyDnRequest |
ModifyDnRequest.setName(String dn)
Sets the distinguished name of the entry to be renamed.
|
ModifyDnRequest |
ModifyDnRequest.setNewRdn(Rdn rdn)
Sets the new RDN of the entry to be renamed.
|
ModifyDnRequest |
ModifyDnRequest.setNewRdn(String rdn)
Sets the new RDN 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.
|
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.
|
static ModifyDnRequest |
Requests.unmodifiableModifyDnRequest(ModifyDnRequest request)
Creates an unmodifiable modify DN request of the provided request.
|
Modifier and Type | Method and 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 |
RequestVisitor.visitRequest(P p,
ModifyDnRequest request)
Visits an
ModifyDN request. |
R |
AbstractRequestVisitor.visitRequest(P p,
ModifyDnRequest request) |
Modifier and Type | Method and 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) |
LdifChangeRecordWriter |
LdifChangeRecordWriter.writeChangeRecord(ModifyDnRequest change) |
ConnectionChangeRecordWriter |
ConnectionChangeRecordWriter.writeChangeRecord(ModifyDnRequest change)
Writes the provided ModifyDN request to the underlying connection,
blocking until the request completes.
|
ChangeRecordWriter |
ChangeRecordWriter.writeChangeRecord(ModifyDnRequest change)
Writes a
ModifyDN change record. |
Modifier and Type | Method and Description |
---|---|
void |
ConnectionWithControls.modifyDN(ModifyDnRequest request)
modifies a DN with the provided request.
|
Modifier and Type | Method and Description |
---|---|
protected Flowable<Response> |
TypedRequestFilter.filterModifyDn(org.forgerock.services.context.Context context,
ModifyDnRequest request,
RequestHandler next)
Filters modify-dn requests and their responses.
|
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 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) |
Constructor and Description |
---|
ModifyDNOperationBasis(org.forgerock.services.context.Context context,
ModifyDnRequest modifyDNRequest)
Creates a new modify DN operation with the provided information.
|
Modifier and Type | Method and Description |
---|---|
void |
TextAccessLogPublisher.logModifyDnRequest(RequestContext context,
ModifyDnRequest request) |
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 |
TextAuditLogPublisher.logModifyDnResult(RequestContext context,
ModifyDnRequest request,
Result result) |
void |
TextAccessLogPublisher.logModifyDnResult(RequestContext context,
ModifyDnRequest request,
Result result) |
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.
|
Modifier and Type | Method and Description |
---|---|
LdapPromise<Result> |
SdkConnectionAdapter.modifyDnAsync(ModifyDnRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
Modifier and Type | Method and Description |
---|---|
ModifyDnRequest |
ModifyDNMsg.createRequest(Dn newDN) |
Copyright 2010-2020 ForgeRock AS.