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.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.
|
org.opends.server.tools.dsreplication |
Defines the classes that are you used by the replication command lines.
|
Modifier and Type | Method and Description |
---|---|
void |
LdapWriter.writeAddRequest(int messageID,
AddRequest request)
Writes the provided add request.
|
Modifier and Type | Method and Description |
---|---|
default Single<Result> |
LdapClientSocket.add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.
|
Result |
Connection.add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.
|
Result |
AbstractConnectionWrapper.add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.
|
Result |
AbstractAsynchronousConnection.add(AddRequest request) |
LdapPromise<Result> |
Connection.addAsync(AddRequest request)
Asynchronously adds an entry to the Directory Server using the provided
add request.
|
LdapPromise<Result> |
AbstractConnectionWrapper.addAsync(AddRequest request)
Asynchronously adds an entry to the Directory Server using the provided
add request.
|
LdapPromise<Result> |
AbstractConnection.addAsync(AddRequest request) |
LdapPromise<Result> |
Connection.addAsync(AddRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously adds an entry to the Directory Server using the provided
add request.
|
LdapPromise<Result> |
AbstractSynchronousConnection.addAsync(AddRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
LdapPromise<Result> |
AbstractConnectionWrapper.addAsync(AddRequest request,
IntermediateResponseHandler intermediateResponseHandler)
Asynchronously adds an entry to the Directory Server using the provided
add request.
|
Modifier and Type | Method and Description |
---|---|
AddRequest |
AddRequest.addAttribute(String attributeDescription,
Object... values) |
AddRequest |
AddRequest.addControl(Control control) |
AddRequest |
AddRequest.addControls(Iterable<? extends Control> controls) |
AddRequest |
AddRequest.clearAttributes() |
static AddRequest |
Requests.copyOfAddRequest(AddRequest request)
Creates a new add request that is an exact copy of the provided request.
|
static AddRequest |
Requests.newAddRequest(Dn name)
Creates a new add request using the provided distinguished name.
|
static AddRequest |
Requests.newAddRequest(Entry entry)
Creates a new add request backed by the provided entry.
|
static AddRequest |
Requests.newAddRequest(String... ldifLines)
Creates a new add request using the provided lines of LDIF decoded using
the default schema.
|
static AddRequest |
Requests.newAddRequest(String name)
Creates a new add request using the provided distinguished name decoded
using the default schema.
|
AddRequest |
AddRequest.removeAttribute(String attributeDescription,
Object... values) |
AddRequest |
AddRequest.replaceAttribute(String attributeDescription,
Object... values) |
AddRequest |
AddRequest.setName(Dn dn) |
AddRequest |
AddRequest.setName(String dn) |
static AddRequest |
Requests.unmodifiableAddRequest(AddRequest request)
Creates an unmodifiable add request of the provided request.
|
Modifier and Type | Method and Description |
---|---|
static AddRequest |
Requests.copyOfAddRequest(AddRequest request)
Creates a new add request that is an exact copy of the provided request.
|
static AddRequest |
Requests.unmodifiableAddRequest(AddRequest request)
Creates an unmodifiable add request of the provided request.
|
R |
RequestVisitor.visitRequest(P p,
AddRequest request)
Visits an
Add request. |
R |
AbstractRequestVisitor.visitRequest(P p,
AddRequest request) |
Modifier and Type | Method and Description |
---|---|
Entry |
RejectedChangeRecordListener.handleDuplicateEntry(AddRequest change,
Entry existingEntry)
Invoked when an attempt was made to add an entry which already exists.
|
void |
RejectedChangeRecordListener.handleRejectedChangeRecord(AddRequest change,
LocalizableMessage reason)
Invoked when an attempt to add an entry was rejected.
|
abstract R |
ChangeRecordVisitor.visitRequest(P p,
AddRequest request) |
LdifChangeRecordWriter |
LdifChangeRecordWriter.writeChangeRecord(AddRequest change) |
ConnectionChangeRecordWriter |
ConnectionChangeRecordWriter.writeChangeRecord(AddRequest change)
Writes the provided Add request to the underlying connection, blocking
until the request completes.
|
ChangeRecordWriter |
ChangeRecordWriter.writeChangeRecord(AddRequest change)
Writes an
Add change record. |
Modifier and Type | Method and Description |
---|---|
protected Flowable<Response> |
TypedRequestFilter.filterAdd(org.forgerock.services.context.Context context,
AddRequest request,
RequestHandler next)
Filters add requests and their responses.
|
protected Flowable<Response> |
TypedProtocolOpFilter.filterAdd(org.forgerock.services.context.Context context,
AddRequest request,
RequestHandler next)
Forwards the request to the next handler in the chain.
|
protected void |
TypedProtocolOpFilter.filterAddResponse(org.forgerock.services.context.Context context,
AddRequest request,
Response response)
Implements the behavior for all the responses of an AddRequest.
|
protected Flowable<Response> |
TypedRequestHandler.handleAdd(org.forgerock.services.context.Context context,
AddRequest request)
Implements the specific behavior for all AddRequest.
|
Flowable<Response> |
TypedRequestHandler.visitRequest(org.forgerock.services.context.Context context,
AddRequest request) |
Constructor and Description |
---|
AddOperation(org.forgerock.services.context.Context context,
AddRequest request)
Creates a new add operation with the provided information.
|
Modifier and Type | Method and Description |
---|---|
void |
TextAccessLogPublisher.logAddRequest(RequestContext context,
AddRequest request) |
static void |
AccessLogger.logAddRequest(RequestContext context,
AddRequest request)
Writes a message to the access logger with information about the provided add request.
|
void |
AccessLogPublisher.logAddRequest(RequestContext context,
AddRequest request)
Writes a message to the access logger with information about the add request.
|
void |
TextAuditLogPublisher.logAddResult(RequestContext context,
AddRequest request,
Result result) |
void |
TextAccessLogPublisher.logAddResult(RequestContext context,
AddRequest request,
Result result) |
static void |
AccessLogger.logAddResult(RequestContext context,
AddRequest request,
Result result)
Writes a message to the access logger with information about the provided result.
|
void |
AccessLogPublisher.logAddResult(RequestContext context,
AddRequest request,
Result result)
Writes a message to the access logger with information about the add result.
|
Modifier and Type | Method and Description |
---|---|
LdapPromise<Result> |
SdkConnectionAdapter.addAsync(AddRequest request,
IntermediateResponseHandler intermediateResponseHandler) |
Modifier and Type | Method and Description |
---|---|
AddRequest |
AddMsg.createRequest(Dn newDN) |
Modifier and Type | Method and Description |
---|---|
static AddRequest |
ADSContext.createGlobalAdministratorAddRequest(String adminUid,
String adminPwd)
Builds and returns an
AddRequest to add the global administrator entry in the admin data backend. |
Copyright 2010-2022 ForgeRock AS.