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.org.forgerock.opendj.server.core Classes implementing core server APIs.org.opends.server.controls Contains classes that represent specific LDAP controls and their values.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.replication.plugin This package contains the part of the Multi-master replication code that works on the Directory Server side.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information.org.opends.server.schema Contains implementations of various Directory Server schema elements.org.opends.server.types.operation Contains a number of interfaces that are implemented by the various types of Directory Server operations. -
-
Uses of Modification in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io that return Modification Modifier and Type Method Description static Modification
Ldap. readModification(Asn1Reader reader, DecodeOptions options, Schema schema)
Reads the next ASN.1 element from the providedASN1Reader
as aModification
.Methods in org.forgerock.opendj.io with parameters of type Modification Modifier and Type Method Description static void
Ldap. writeModification(Asn1Writer writer, Modification modification)
Writes anModification
to 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 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.Methods in org.forgerock.opendj.ldap with parameters of type Modification Modifier and Type Method 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.Method parameters in org.forgerock.opendj.ldap with type arguments of type Modification Modifier and Type Method 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. -
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 aList
containing the modifications included with this modify request.Methods in org.forgerock.opendj.ldap.messages with parameters of type Modification Modifier and Type Method Description ModifyRequest
ModifyRequest. addModification(Modification modification)
Appends the provided modification to the list of modifications included with this modify request. -
Uses of Modification in org.forgerock.opendj.server.core
Methods in org.forgerock.opendj.server.core that return types with arguments of type Modification Modifier and Type Method Description List<Modification>
RequestContext. getModificationsAsAppliedByServer()
Returns the list of modifications applied by the server.Method parameters in org.forgerock.opendj.server.core with type arguments of type Modification Modifier and Type Method Description void
RequestContext. setModificationsAsAppliedByServer(List<Modification> modificationsAsAppliedByServer)
Sets the list of modifications applied to an entry by the server while processing a Modify request. -
Uses of Modification in org.opends.server.controls
Methods in org.opends.server.controls that return types with arguments of type Modification Modifier and Type Method Description List<Modification>
InternalModificationsRequestControl. getModifications()
Returns the modifications to perform.Constructor parameters in org.opends.server.controls with type arguments of type Modification Constructor Description InternalModificationsRequestControl(boolean isCritical, String origin, List<Modification> mods)
Constructs a new control. -
Uses of Modification in org.opends.server.core
Methods in org.opends.server.core that return types with arguments of type Modification Modifier and Type Method Description List<Modification>
ModifyDnOperation. getModifications()
Retrieves the set of modifications applied to attributes of the target entry in the course of processing this modify DN operation.List<Modification>
ModifyOperation. getModifications()
Retrieves the set of modifications for this modify operation.List<Modification>
PasswordPolicyState. getModifications()
Retrieves the set of modifications that correspond to changes made in password policy processing that may need to be applied to the user entry.Methods in org.opends.server.core with parameters of type Modification Modifier and Type Method Description void
ModifyDnOperation. addModification(Modification modification)
void
ModifyOperation. addModification(Modification modification)
Adds the provided modification to the set of modifications to this modify operation.Method parameters in org.opends.server.core with type arguments of type Modification Modifier and Type Method Description void
ModifyOperation. setModifications(List<Modification> modifications)
-
Uses of Modification in org.opends.server.replication.plugin
Methods in org.opends.server.replication.plugin that return Modification Modifier and Type Method Description abstract Modification
AttrHistorical. replayOperation(CSN csn, Entry modifiedEntry, Modification mod)
This method will be called when replaying an operation.Modification
AttrHistoricalMultiple. replayOperation(CSN csn, Entry modifiedEntry, Modification m)
Modification
AttrHistoricalSingle. replayOperation(CSN csn, Entry modifiedEntry, Modification mod)
Methods in org.opends.server.replication.plugin with parameters of type Modification Modifier and Type Method Description abstract void
AttrHistorical. processLocalOrNonConflictModification(CSN csn, Modification mod)
This method calculates the historical information and update the hist attribute to store the historical information for modify operation that does not conflict with previous operation.void
AttrHistoricalMultiple. processLocalOrNonConflictModification(CSN csn, Modification mod)
void
AttrHistoricalSingle. processLocalOrNonConflictModification(CSN csn, Modification mod)
abstract Modification
AttrHistorical. replayOperation(CSN csn, Entry modifiedEntry, Modification mod)
This method will be called when replaying an operation.Modification
AttrHistoricalMultiple. replayOperation(CSN csn, Entry modifiedEntry, Modification m)
Modification
AttrHistoricalSingle. replayOperation(CSN csn, Entry modifiedEntry, Modification mod)
-
Uses of Modification in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return types with arguments of type Modification Modifier and Type Method Description List<Modification>
ModifyCommonMsg. getMods()
Get the Modifications associated to the UpdateMsg to the provided value.Method parameters in org.opends.server.replication.protocol with type arguments of type Modification Modifier and Type Method Description void
ModifyCommonMsg. setMods(List<Modification> mods)
Set the Modification associated to the UpdateMsg to the provided value.Constructor parameters in org.opends.server.replication.protocol with type arguments of type Modification Constructor Description ModifyDNMsg(Dn dn, CSN csn, UUID entryUUID, UUID newSuperiorEntryUUID, boolean deleteOldRdn, Dn newSuperior, Rdn newRDN, List<Modification> mods)
Construct a new Modify DN message (with mods).ModifyMsg(CSN csn, Dn dn, UUID entryUUID, List<Modification> mods)
Creates a new Modify message using the provided information. -
Uses of Modification in org.opends.server.schema
Methods in org.opends.server.schema that return types with arguments of type Modification Modifier and Type Method Description List<Modification>
SchemaHandler. getOfflineSchemaModifications()
Returns the list of offline modifications made to the schema, which is built once when initializing the schema.List<Modification>
SchemaHandler. loadSchemaFileIntoSchemaBuilderAndReturnModifications(Path schemaFile, SchemaBuilder schemaBuilder, Schema readSchema)
Loads the contents of the provided schema file into the provided schema builder and returns the list of modifications. -
Uses of Modification in org.opends.server.types.operation
Methods in org.opends.server.types.operation that return types with arguments of type Modification Modifier and Type Method Description List<Modification>
PostCommitModifyDNOperation. getModifications()
Retrieves the set of modifications applied to attributes of the target entry in the course of processing this modify DN operation.List<Modification>
PostCommitModifyOperation. getModifications()
Retrieves the set of modifications for this modify operation.List<Modification>
PostOperationModifyDNOperation. getModifications()
Retrieves the set of modifications applied to attributes of the target entry in the course of processing this modify DN operation.List<Modification>
PostOperationModifyOperation. getModifications()
Retrieves the set of modifications for this modify operation.List<Modification>
PostResponseModifyDNOperation. getModifications()
Retrieves the set of modifications applied to attributes of the target entry in the course of processing this modify DN operation.List<Modification>
PostResponseModifyOperation. getModifications()
Retrieves the set of modifications for this modify operation.List<Modification>
PostSynchronizationModifyDNOperation. getModifications()
Retrieves the set of modifications applied to attributes of the target entry in the course of processing this modify DN operation.List<Modification>
PostSynchronizationModifyOperation. getModifications()
Retrieves the set of modifications for this modify operation.List<Modification>
PreOperationModifyDNOperation. getModifications()
Retrieves the set of modifications applied to attributes of the target entry in the course of processing this modify DN operation.List<Modification>
PreOperationModifyOperation. getModifications()
Retrieves the set of modifications for this modify operation.List<Modification>
PreParseModifyOperation. getModifications()
Retrieves the set of modifications as included in the client request.Methods in org.opends.server.types.operation with parameters of type Modification Modifier and Type Method Description void
PreOperationModifyDNOperation. addModification(Modification modification)
Adds the provided modification to the set of modifications to be applied as part of the update.void
PreOperationModifyOperation. addModification(Modification modification)
Adds the provided modification to the set of modifications to this modify operation.void
PreParseModifyOperation. addModification(Modification modification)
Adds the provided modification to the set of modifications for this modify operation.Method parameters in org.opends.server.types.operation with type arguments of type Modification Modifier and Type Method Description void
PreParseModifyOperation. setModifications(List<Modification> modifications)
Specifies the set of modifications for this modify operation.
-