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.
|
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 |
---|---|
default io.reactivex.Single<Result> |
LdapClientSocket.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.
|
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) |
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(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,
org.forgerock.i18n.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. |
Copyright © 2010-2018, ForgeRock All Rights Reserved.