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.
|
Modifier and Type | Field and 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Constructor and Description |
---|
Modification(ModificationType modificationType,
Attribute attribute)
Creates a new modification having the provided modification type and
attribute values to be updated.
|
Modifier and Type | Method and Description |
---|---|
ModifyRequest |
ModifyRequest.addModification(ModificationType type,
String attributeDescription,
Object... values)
Appends the provided modification to the list of modifications included
with this modify request.
|
Copyright © 2010-2018, ForgeRock All Rights Reserved.