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.
|
Modifier and Type | Method and Description |
---|---|
static Modification |
Ldap.readModification(Asn1Reader reader,
DecodeOptions options,
Schema schema)
Reads the next ASN.1 element from the provided
ASN1Reader as a Modification . |
Modifier and Type | Method and Description |
---|---|
static void |
Ldap.writeModification(Asn1Writer writer,
Modification modification)
Writes an
Modification to the provided Asn1Writer . |
Modifier and Type | Method and Description |
---|---|
static Modification |
Modification.add(String attributeDescription,
Object... values)
Returns a new modification for adding an attribute with the provided description and values.
|
static Modification |
Modification.delete(String attributeDescription,
Object... values)
Returns a new DELETE modification.
|
static Modification |
Modification.replace(String attributeDescription,
Object... values)
Returns a new modification for replacing all the values of the provided attribute with the provided values.
|
Modification |
Modification.withValues(Object... values)
Adds values to this modification's attribute.
|
Modifier and Type | Method and Description |
---|---|
static 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 Type | Method and Description |
---|---|
static 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.
|
Modifier and Type | Method and Description |
---|---|
List<Modification> |
ModifyRequest.getModifications()
Returns a
List containing the modifications included with this
modify request. |
Modifier and Type | Method and Description |
---|---|
ModifyRequest |
ModifyRequest.addModification(Modification modification)
Appends the provided modification to the list of modifications included
with this modify request.
|
Copyright © 2010-2018, ForgeRock All Rights Reserved.