Interface DataObjectModificationBuilder
- All Known Implementing Classes:
DataObjectModificationBuilderImpl
,GenericDataObjectModificationBuilder
public interface DataObjectModificationBuilder
The basic data object modification builder which might be extended with a strongly typed support by the underlying
DataObjectDataSource
implementation.- Author:
- Micha Kiener
-
Method Summary
Modifier and TypeMethodDescriptiondefault DataObjectModificationBuilder
accessibleByUser
(String userId) accessibleByUserOrGroups
(String userId, Collection<String> groupKeys) definitionId
(String id) Set the id of the data object definition the update operation should be based on.definitionKey
(String key) Set the key of the data object definition the update operation should be based on.Returns the id of the data object definition this modification builder is based on.The id of the data object that should be modified with the data.modify()
Persists the modified data object instance.If a modification builder is used to modify a data object given by the payload sent from a form typically, this method is invoked to modify the data object according the given payload data.Set the key of the operation that should be used to create the object.originalValue
(String valueName, Object value) Generic setter for a data object field value specified by its name and value to be set.Set the tenant id for data object definition.Generic setter for a data object field value specified by its name and value to be set.
-
Method Details
-
getDefinitionId
String getDefinitionId()Returns the id of the data object definition this modification builder is based on.- Returns:
- the id of the data object definition
-
definitionId
Set the id of the data object definition the update operation should be based on. Must only be provided, if the data object definition key is not set. -
definitionKey
Set the key of the data object definition the update operation should be based on. If set, the latest definition id is used. The key is ignored, if the definition id is set directly. -
tenantId
Set the tenant id for data object definition. This can be used together with the definition key for the lookup -
operation
Set the key of the operation that should be used to create the object. -
lookupId
The id of the data object that should be modified with the data. Only relevant when using the default update operation. -
modifyFromPayload
If a modification builder is used to modify a data object given by the payload sent from a form typically, this method is invoked to modify the data object according the given payload data.- Parameters:
context
- the data object context containing the data and full payload and further information for parsing the content into the data object- Returns:
- the builder instance for method chaining
-
value
Generic setter for a data object field value specified by its name and value to be set.- Parameters:
valueName
- the name of the data object field to set a valuevalue
- the value to be set- Returns:
- the builder instance for method chaining
-
originalValue
Generic setter for a data object field value specified by its name and value to be set.- Parameters:
valueName
- the name of the data object field to set a valuevalue
- the value to be set- Returns:
- the builder instance for method chaining
-
accessibleByUser
-
accessibleByUserOrGroups
-
modify
DataObjectInstanceVariableContainer modify()Persists the modified data object instance. This operation will try to return the container that was modified. NOTE: Whether something is returned or not depends on the implementation for the operation- Returns:
- the modified data object instance which might be the very same or actually a new one returned by the data source
-
getModificationData
-
getOriginalData
-