Package | Description |
---|---|
org.forgerock.opendj.ldap |
Classes and interfaces for core types including connections, entries, and
attributes.
|
org.forgerock.opendj.ldap.requests |
Classes and interfaces for core LDAP requests.
|
org.opends.server.protocols.ldap |
Contains the implementation for the Directory Server connection handler that
is responsible for interacting with clients using LDAPv3.
|
org.opends.server.types |
Contains implementations for a number of Directory Server data
types.
|
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.
|
Modifier and Type | Method and Description |
---|---|
ModificationType |
LDAPModification.getModificationType()
Retrieves the modification type for this modification.
|
Modifier and Type | Method and Description |
---|---|
void |
LDAPModification.setModificationType(ModificationType modificationType)
Specifies the modification type for this modification.
|
Constructor and Description |
---|
LDAPModification(ModificationType modificationType,
RawAttribute attribute)
Creates a new LDAP modification with the provided type and attribute.
|
Modifier and Type | Method and Description |
---|---|
abstract ModificationType |
RawModification.getModificationType()
Retrieves the modification type for this modification.
|
ModificationType |
Modification.getModificationType()
Retrieves the modification type for this modification.
|
Modifier and Type | Method and Description |
---|---|
static RawModification |
RawModification.create(ModificationType modificationType,
RawAttribute attribute)
Creates a new raw modification with the provided type and
attribute.
|
static RawModification |
RawModification.create(ModificationType modificationType,
String attributeType)
Creates a new raw modification with the provided type and
attribute.
|
static RawModification |
RawModification.create(ModificationType modificationType,
String attributeType,
ArrayList<ByteString> attributeValues)
Creates a new raw modification with the provided type and
attribute.
|
static RawModification |
RawModification.create(ModificationType modificationType,
String attributeType,
ByteString attributeValue)
Creates a new raw modification with the provided type and
attribute.
|
static RawModification |
RawModification.create(ModificationType modificationType,
String attributeType,
String attributeValue)
Creates a new raw modification with the provided type and
attribute.
|
abstract void |
RawModification.setModificationType(ModificationType modificationType)
Specifies the modification type for this modification.
|
void |
Modification.setModificationType(ModificationType modificationType)
Specifies the modification type for this modification.
|
Constructor and Description |
---|
Modification(ModificationType modificationType,
Attribute attribute)
Creates a new modification with the provided information.
|
Modification(ModificationType modificationType,
Attribute attribute,
boolean isInternal)
Creates a new modification with the provided information.
|
Copyright 2010-2017 ForgeRock AS.