Class AssignmentOperationExecutorStrategy
java.lang.Object
org.bonitasoft.engine.core.operation.impl.AssignmentOperationExecutorStrategy
- All Implemented Interfaces:
OperationExecutorStrategy
@Component
public class AssignmentOperationExecutorStrategy
extends Object
implements OperationExecutorStrategy
AssignmentOperationExecutorStrategy is the default Bonita strategy to execute data assignment operations
- Author:
- Zhang Bole, Elias Ricken de Medeiros, Baptiste Mesta, Matthieu Chaffotte
-
Constructor Summary
ConstructorsConstructorDescriptionBuilds a new AssignmentOperationExecutorStrategy, which is the strategy to execute data assignment operations -
Method Summary
Modifier and TypeMethodDescriptioncomputeNewValueForLeftOperand(SOperation operation, Object value, SExpressionContext expressionContext, boolean shouldPersistValue) Calculates the new value of the left operand base of right operand expression valuebooleanDetermines if the operation right value should be persisted when the value is evaluated to null.
-
Constructor Details
-
AssignmentOperationExecutorStrategy
public AssignmentOperationExecutorStrategy()Builds a new AssignmentOperationExecutorStrategy, which is the strategy to execute data assignment operations
-
-
Method Details
-
computeNewValueForLeftOperand
public Object computeNewValueForLeftOperand(SOperation operation, Object value, SExpressionContext expressionContext, boolean shouldPersistValue) throws SOperationExecutionException Description copied from interface:OperationExecutorStrategyCalculates the new value of the left operand base of right operand expression value- Specified by:
computeNewValueForLeftOperandin interfaceOperationExecutorStrategy- Parameters:
operation- the operation in progressvalue- result of the evaluation of right operand expressionexpressionContext- the expression contextshouldPersistValue- true if the right operand must be persisted (Business Data)- Returns:
- the new value to set the left operand with
- Throws:
SOperationExecutionException
-
getOperationType
- Specified by:
getOperationTypein interfaceOperationExecutorStrategy
-
shouldPersistOnNullValue
public boolean shouldPersistOnNullValue()Description copied from interface:OperationExecutorStrategyDetermines if the operation right value should be persisted when the value is evaluated to null.- Specified by:
shouldPersistOnNullValuein interfaceOperationExecutorStrategy- Returns:
- true if the the evaluated right value should be persisted; false otherwise.
-