Uses of Class
org.forgerock.opendj.ldap.Modification
-
Packages that use Modification 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. -
-
Uses of Modification in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io that return Modification Modifier and Type Method Description static ModificationLdap. readModification(Asn1Reader reader, DecodeOptions options, Schema schema)Reads the next ASN.1 element from the providedASN1Readeras aModification.Methods in org.forgerock.opendj.io with parameters of type Modification Modifier and Type Method Description static voidLdap. writeModification(Asn1Writer writer, Modification modification)Writes anModificationto the providedAsn1Writer. -
Uses of Modification in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return Modification Modifier and Type Method Description static ModificationModification. add(String attributeDescription, Object... values)Returns a new modification for adding an attribute with the provided description and values.static ModificationModification. delete(String attributeDescription, Object... values)Returns a new DELETE modification.static ModificationModification. replace(String attributeDescription, Object... values)Returns a new modification for replacing all the values of the provided attribute with the provided values.ModificationModification. withValues(Object... values)Adds values to this modification's attribute.Methods in org.forgerock.opendj.ldap with parameters of type Modification Modifier and Type Method Description static EntryEntries. modifyEntry(Entry entry, Modification change)Applies the provided modification to an entry.static EntryEntries. modifyEntry(Entry entry, Modification change, Collection<? super ByteString> conflictingValues)Applies the provided modification to an entry.Method parameters in org.forgerock.opendj.ldap with type arguments of type Modification Modifier and Type Method Description static EntryEntries. modifyEntryPermissive(Entry entry, Collection<Modification> changes)Applies the provided modifications to an entry using "permissive" modify semantics.static EntryEntries. 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
Methods in org.forgerock.opendj.ldap.messages that return types with arguments of type Modification Modifier and Type Method Description List<Modification>ModifyRequest. getModifications()Returns aListcontaining the modifications included with this modify request.Methods in org.forgerock.opendj.ldap.messages with parameters of type Modification Modifier and Type Method Description ModifyRequestModifyRequest. addModification(Modification modification)Appends the provided modification to the list of modifications included with this modify request.
-