Uses of Interface
org.forgerock.opendj.ldap.messages.AddRequest
-
Packages that use AddRequest 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. -
-
Uses of AddRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type AddRequest Modifier and Type Method Description void
LdapWriter. writeAddRequest(int messageID, AddRequest request)
Writes the provided add request. -
Uses of AddRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type AddRequest Modifier and Type Method Description Result
AbstractAsynchronousConnection. add(AddRequest request)
Result
AbstractConnectionWrapper. 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.default io.reactivex.rxjava3.core.Single<Result>
LdapClientSocket. add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
AbstractConnection. addAsync(AddRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. addAsync(AddRequest request)
Asynchronously adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
AbstractConnectionWrapper. 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>
Connection. addAsync(AddRequest request)
Asynchronously adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
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
Methods in org.forgerock.opendj.ldap.messages that return AddRequest Modifier and Type Method 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(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
AddRequest. removeAttribute(String attributeDescription, Object... values)
AddRequest
AddRequest. replaceAttribute(String attributeDescription, Object... values)
AddRequest
AddRequest. setName(String dn)
AddRequest
AddRequest. setName(Dn dn)
static AddRequest
Requests. unmodifiableAddRequest(AddRequest request)
Creates an unmodifiable add request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type AddRequest Modifier and Type Method 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
AbstractRequestVisitor. visitRequest(P p, AddRequest request)
R
RequestVisitor. visitRequest(P p, AddRequest request)
Visits anAdd
request. -
Uses of AddRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type AddRequest Modifier and Type Method 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)
ChangeRecordWriter
ChangeRecordWriter. writeChangeRecord(AddRequest change)
Writes anAdd
change record.ConnectionChangeRecordWriter
ConnectionChangeRecordWriter. writeChangeRecord(AddRequest change)
Writes the provided Add request to the underlying connection, blocking until the request completes.LdifChangeRecordWriter
LdifChangeRecordWriter. writeChangeRecord(AddRequest change)
-