Uses of Class
org.forgerock.opendj.ldap.messages.AddRequest
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 AddRequest in org.forgerock.opendj.io
Modifier and TypeMethodDescriptionvoid
LdapWriter.writeAddRequest
(int messageID, AddRequest request) Writes the provided add request. -
Uses of AddRequest in org.forgerock.opendj.ldap
Modifier and TypeMethodDescriptionAbstractAsynchronousConnection.add
(AddRequest request) AbstractConnectionWrapper.add
(AddRequest request) Adds an entry to the Directory Server using the provided add request.Connection.add
(AddRequest request) Adds an entry to the Directory Server using the provided add request.LdapClientSocket.add
(AddRequest request) Adds an entry to the Directory Server using the provided add request.AbstractConnection.addAsync
(AddRequest request) AbstractConnectionWrapper.addAsync
(AddRequest request) Asynchronously adds an entry to the Directory Server using the provided add request.AbstractConnectionWrapper.addAsync
(AddRequest request, IntermediateResponseHandler intermediateResponseHandler) Asynchronously adds an entry to the Directory Server using the provided add request.AbstractSynchronousConnection.addAsync
(AddRequest request, IntermediateResponseHandler intermediateResponseHandler) Connection.addAsync
(AddRequest request) Asynchronously adds an entry to the Directory Server using the provided add request.Connection.addAsync
(AddRequest request, IntermediateResponseHandler intermediateResponseHandler) Asynchronously adds an entry to the Directory Server using the provided add request. -
Uses of AddRequest in org.forgerock.opendj.ldap.messages
Modifier and TypeMethodDescriptionAddRequest.addAttribute
(String attributeDescription, Object... values) 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
(String name) Creates a new add request using the provided distinguished name decoded using the default schema.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
(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.AddRequest.removeAttribute
(String attributeDescription, Object... values) AddRequest.replaceAttribute
(String attributeDescription, Object... values) Modifier and TypeMethodDescriptionstatic AddRequest
Requests.copyOfAddRequest
(AddRequest request) Creates a new add request that is an exact copy of the provided request.AbstractRequestVisitor.visitRequest
(P p, AddRequest request) RequestVisitor.visitRequest
(P p, AddRequest request) Visits anAdd
request. -
Uses of AddRequest in org.forgerock.opendj.ldif
Modifier and TypeMethodDescriptionRejectedChangeRecordListener.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) ChangeRecordWriter.writeChangeRecord
(AddRequest change) Writes anAdd
change record.ConnectionChangeRecordWriter.writeChangeRecord
(AddRequest change) Writes the provided Add request to the underlying connection, blocking until the request completes.LdifChangeRecordWriter.writeChangeRecord
(AddRequest change) -
Uses of AddRequest in org.opends.server.core
ModifierConstructorDescriptionAddOperation
(RequestContext context, LocalBackend<?> backend, AddRequest request, Consumer<ResponseStream> out) Creates a new add operation. -
Uses of AddRequest in org.opends.server.loggers
Modifier and TypeMethodDescriptionvoid
AccessLogPublisher.logAddRequest
(RequestContext context, AddRequest request) Writes a message to the access logger with information about the add request.void
TextAccessLogPublisher.logAddRequest
(RequestContext context, AddRequest request) void
AccessLogPublisher.logAddResult
(RequestContext context, AddRequest request, Result result) Writes a message to the access logger with information about the add result.void
TextAccessLogPublisher.logAddResult
(RequestContext context, AddRequest request, Result result) void
TextAuditLogPublisher.logAddResult
(RequestContext context, AddRequest request, Result result) -
Uses of AddRequest in org.opends.server.replication.protocol