Uses of Interface
org.forgerock.opendj.ldap.messages.ModifyRequest
-
Packages that use ModifyRequest 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 ModifyRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type ModifyRequest Modifier and Type Method Description void
LdapWriter. writeModifyRequest(int messageID, ModifyRequest request)
Writes the provided modify request. -
Uses of ModifyRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return ModifyRequest Modifier and Type Method Description static ModifyRequest
Entries. diffEntries(Entry fromEntry, Entry toEntry)
Creates a new modify request containing a list of modifications which can be used to transformfromEntry
into entrytoEntry
.static ModifyRequest
Entries. diffEntries(Entry fromEntry, Entry toEntry, Options options)
Creates a new modify request containing a list of modifications which can be used to transformfromEntry
into entrytoEntry
.Methods in org.forgerock.opendj.ldap with parameters of type ModifyRequest Modifier and Type Method Description Result
AbstractAsynchronousConnection. modify(ModifyRequest request)
Result
AbstractConnectionWrapper. modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify request.Result
Connection. modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify request.default io.reactivex.rxjava3.core.Single<Result>
LdapClientSocket. modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
AbstractConnection. modifyAsync(ModifyRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. modifyAsync(ModifyRequest request)
Asynchronously modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
AbstractConnectionWrapper. 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>
Connection. modifyAsync(ModifyRequest request)
Asynchronously modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
Connection. 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. -
Uses of ModifyRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return ModifyRequest Modifier and Type Method Description ModifyRequest
ModifyRequest. addControl(Control control)
ModifyRequest
ModifyRequest. addControls(Iterable<? extends Control> controls)
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(String name)
Creates a new modify request using the provided distinguished name decoded using the default schema.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(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 transformfromEntry
into entrytoEntry
.ModifyRequest
ModifyRequest. setName(String dn)
Sets the distinguished name of the entry to be modified.ModifyRequest
ModifyRequest. setName(Dn 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.Methods in org.forgerock.opendj.ldap.messages with parameters of type ModifyRequest Modifier and Type Method 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
AbstractRequestVisitor. visitRequest(P p, ModifyRequest request)
R
RequestVisitor. visitRequest(P p, ModifyRequest request)
Visits anModify
request. -
Uses of ModifyRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type ModifyRequest Modifier and Type Method 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)
ChangeRecordWriter
ChangeRecordWriter. writeChangeRecord(ModifyRequest change)
Writes aModify
change record.ConnectionChangeRecordWriter
ConnectionChangeRecordWriter. writeChangeRecord(ModifyRequest change)
Writes the provided Modify request to the underlying connection, blocking until the request completes.LdifChangeRecordWriter
LdifChangeRecordWriter. writeChangeRecord(ModifyRequest change)
-