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.writeModifyRequest(int messageID,
ModifyRequest request)
Writes the provided modify request.
|
Modifier and Type | Method and Description |
---|---|
static ModifyRequest |
Entries.diffEntries(Entry fromEntry,
Entry toEntry)
Creates a new modify request containing a list of modifications which can
be used to transform
fromEntry into entry toEntry . |
static ModifyRequest |
Entries.diffEntries(Entry fromEntry,
Entry toEntry,
Entries.DiffOptions options)
Creates a new modify request containing a list of modifications which can
be used to transform
fromEntry into entry toEntry . |
Modifier and Type | Method and Description |
---|---|
Result |
Connection.modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify
request.
|
Result |
AbstractConnectionWrapper.modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify
request.
|
Result |
AbstractAsynchronousConnection.modify(ModifyRequest request) |
LdapPromise<Result> |
Connection.modifyAsync(ModifyRequest request)
Asynchronously modifies an entry in the Directory Server using the
provided modify request.
|
LdapPromise<Result> |
AbstractConnectionWrapper.modifyAsync(ModifyRequest request)
Asynchronously modifies an entry in the Directory Server using the
provided modify request.
|
LdapPromise<Result> |
AbstractConnection.modifyAsync(ModifyRequest request) |
LdapPromise<Result> |
Connection.modifyAsync(ModifyRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously modifies an entry in the Directory Server using the
provided modify request.
|
LdapPromise<Result> |
AbstractSynchronousConnection.modifyAsync(ModifyRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
LdapPromise<Result> |
AbstractConnectionWrapper.modifyAsync(ModifyRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously modifies an entry in the Directory Server using the
provided modify request.
|
static Entry |
Entries.modifyEntry(Entry entry,
ModifyRequest changes)
Applies the provided modification request to an entry.
|
Modifier and Type | Method and Description |
---|---|
ModifyRequest |
ModifyRequest.addControl(Control control) |
ModifyRequest |
ModifyRequest.addModification(Modification modification)
Appends the provided modification to the list of modifications included
with this modify request.
|
ModifyRequest |
ModifyRequest.addModification(ModificationType type,
String attributeDescription,
Object... values)
Appends the provided modification to the list of modifications included
with this modify request.
|
static ModifyRequest |
Requests.copyOfModifyRequest(ModifyRequest request)
Creates a new modify request that is an exact copy of the provided
request.
|
static ModifyRequest |
Requests.newModifyRequest(Dn name)
Creates a new modify request using the provided distinguished name.
|
static ModifyRequest |
Requests.newModifyRequest(Entry fromEntry,
Entry toEntry)
Creates a new modify request containing a list of modifications which can
be used to transform
fromEntry into entry toEntry . |
static ModifyRequest |
Requests.newModifyRequest(String... ldifLines)
Creates a new modify request using the provided lines of LDIF decoded
using the default schema.
|
static ModifyRequest |
Requests.newModifyRequest(String name)
Creates a new modify request using the provided distinguished name
decoded using the default schema.
|
ModifyRequest |
ModifyRequest.setName(Dn dn)
Sets the distinguished name of the entry to be modified.
|
ModifyRequest |
ModifyRequest.setName(String dn)
Sets the distinguished name of the entry to be modified.
|
static ModifyRequest |
Requests.unmodifiableModifyRequest(ModifyRequest request)
Creates an unmodifiable modify request of the provided request.
|
Modifier and Type | Method and Description |
---|---|
static ModifyRequest |
Requests.copyOfModifyRequest(ModifyRequest request)
Creates a new modify request that is an exact copy of the provided
request.
|
static ModifyRequest |
Requests.unmodifiableModifyRequest(ModifyRequest request)
Creates an unmodifiable modify request of the provided request.
|
R |
RequestVisitor.visitRequest(P p,
ModifyRequest request)
Visits an
Modify request. |
R |
AbstractRequestVisitor.visitRequest(P p,
ModifyRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
RejectedChangeRecordListener.handleRejectedChangeRecord(ModifyRequest change,
LocalizableMessage reason)
Invoked when an attempt to modify an entry was rejected.
|
abstract R |
ChangeRecordVisitor.visitRequest(P p,
ModifyRequest request) |
LdifChangeRecordWriter |
LdifChangeRecordWriter.writeChangeRecord(ModifyRequest change) |
ConnectionChangeRecordWriter |
ConnectionChangeRecordWriter.writeChangeRecord(ModifyRequest change)
Writes the provided Modify request to the underlying connection, blocking
until the request completes.
|
ChangeRecordWriter |
ChangeRecordWriter.writeChangeRecord(ModifyRequest change)
Writes a
Modify change record. |
Modifier and Type | Method and Description |
---|---|
void |
ConnectionWithControls.modify(ModifyRequest request)
Modifies with the provided request.
|
Modifier and Type | Method and Description |
---|---|
protected Flowable<Response> |
TypedRequestFilter.filterModify(org.forgerock.services.context.Context context,
ModifyRequest request,
RequestHandler next)
Filters modify requests and their responses.
|
protected Flowable<Response> |
TypedProtocolOpFilter.filterModify(org.forgerock.services.context.Context context,
ModifyRequest request,
RequestHandler next)
Forwards the request to the next handler in the chain.
|
protected void |
TypedProtocolOpFilter.filterModifyResponse(org.forgerock.services.context.Context context,
ModifyRequest request,
Response response)
Implements the behavior for all the responses of a ModifyRequest.
|
protected Flowable<Response> |
TypedRequestHandler.handleModify(org.forgerock.services.context.Context context,
ModifyRequest request)
Implements the specific behavior for all ModifyRequest.
|
Flowable<Response> |
TypedRequestHandler.visitRequest(org.forgerock.services.context.Context context,
ModifyRequest request) |
Constructor and Description |
---|
ModifyOperationBasis(org.forgerock.services.context.Context context,
ModifyRequest modifyRequest)
Creates a new modify operation with the provided information.
|
Modifier and Type | Method and Description |
---|---|
void |
TextAccessLogPublisher.logModifyRequest(RequestContext context,
ModifyRequest request) |
static void |
AccessLogger.logModifyRequest(RequestContext context,
ModifyRequest request)
Writes a message to the access logger with information about the provided modify request.
|
void |
AccessLogPublisher.logModifyRequest(RequestContext context,
ModifyRequest request)
Writes a message to the access logger with information about the modify request.
|
void |
TextAuditLogPublisher.logModifyResult(RequestContext context,
ModifyRequest request,
Result result) |
void |
TextAccessLogPublisher.logModifyResult(RequestContext context,
ModifyRequest request,
Result result) |
static void |
AccessLogger.logModifyResult(RequestContext context,
ModifyRequest request,
Result result)
Writes a message to the access logger with information about the provided modify result.
|
void |
AccessLogPublisher.logModifyResult(RequestContext context,
ModifyRequest request,
Result result)
Writes a message to the access logger with information about the modify result.
|
Modifier and Type | Method and Description |
---|---|
LdapPromise<Result> |
SdkConnectionAdapter.modifyAsync(ModifyRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
Modifier and Type | Method and Description |
---|---|
ModifyRequest |
ModifyMsg.createRequest(Dn newDN) |
Copyright 2010-2020 ForgeRock AS.