Uses of Class
org.forgerock.opendj.ldap.ModificationType
-
Packages that use ModificationType Package Description 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 ModificationType in org.forgerock.opendj.ldap
Fields in org.forgerock.opendj.ldap declared as ModificationType Modifier and Type Field Description static ModificationType
ModificationType. ADD
Add the values listed in the modification to the attribute, creating the attribute if necessary.static ModificationType
ModificationType. DELETE
Delete the values listed in the modification from the attribute.static ModificationType
ModificationType. INCREMENT
Increment all existing values of the attribute by the amount specified in the modification value.static ModificationType
ModificationType. REPLACE
Replace all existing values of the attribute with the new values listed in the modification, creating the attribute if it did not already exist.Methods in org.forgerock.opendj.ldap that return ModificationType Modifier and Type Method Description ModificationType
Modification. getModificationType()
Returns the type of modification to be performed.static ModificationType
ModificationType. valueOf(int intValue)
Returns the modification change type having the specified integer value as defined in RFC 4511 section 4.6.Methods in org.forgerock.opendj.ldap that return types with arguments of type ModificationType Modifier and Type Method Description static List<ModificationType>
ModificationType. values()
Returns an unmodifiable list containing the set of available modification change types indexed on their integer value as defined in RFC 4511 section 4.6.Constructors in org.forgerock.opendj.ldap with parameters of type ModificationType Constructor Description Modification(ModificationType modificationType, Attribute attribute)
Creates a new modification having the provided modification type and attribute values to be updated. -
Uses of ModificationType in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages with parameters of type ModificationType Modifier and Type Method Description ModifyRequest
ModifyRequest. addModification(ModificationType type, String attributeDescription, Object... values)
Appends the provided modification to the list of modifications included with this modify request.
-