Uses of Class
org.forgerock.opendj.ldap.Modification
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.
-
Uses of Modification in org.forgerock.opendj.io
Modifier and TypeMethodDescriptionstatic Modification
Ldap.readModification
(Asn1Reader reader, DecodeOptions options, Schema schema) Reads the next ASN.1 element from the providedASN1Reader
as aModification
.Modifier and TypeMethodDescriptionstatic void
Ldap.writeModification
(Asn1Writer writer, Modification modification) Writes anModification
to the providedAsn1Writer
. -
Uses of Modification in org.forgerock.opendj.ldap
Modifier and TypeMethodDescriptionstatic Modification
Returns a new modification for adding an attribute with the provided description and values.static Modification
Returns a new DELETE modification.static Modification
Returns a new modification for replacing all the values of the provided attribute with the provided values.Modification.withValues
(Object... values) Adds values to this modification's attribute.Modifier and TypeMethodDescriptionstatic Entry
Entries.modifyEntry
(Entry entry, Modification change) Applies the provided modification to an entry.static Entry
Entries.modifyEntry
(Entry entry, Modification change, Collection<? super ByteString> conflictingValues) Applies the provided modification to an entry.Modifier and TypeMethodDescriptionstatic Entry
Entries.modifyEntryPermissive
(Entry entry, Collection<Modification> changes) Applies the provided modifications to an entry using "permissive" modify semantics.static Entry
Entries.modifyEntryStrict
(Entry entry, Collection<Modification> changes) Applies the provided modifications to an entry using "strict" modify semantics. -
Uses of Modification in org.forgerock.opendj.ldap.messages
Modifier and TypeMethodDescriptionModifyRequest.getModifications()
Returns aList
containing the modifications included with this modify request.Modifier and TypeMethodDescriptionModifyRequest.addModification
(Modification modification) Appends the provided modification to the list of modifications included with this modify request.