Class VariableMapper
java.lang.Object
org.flowable.common.engine.impl.javax.el.VariableMapper
The interface to a map between EL variables and the EL expressions they are associated with.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract ValueExpression
resolveVariable
(String variable) Resolves the specified variable name to a ValueExpression.abstract ValueExpression
setVariable
(String variable, ValueExpression expression) Assign a ValueExpression to an EL variable, replacing any previously assignment to the same variable.
-
Constructor Details
-
VariableMapper
public VariableMapper()
-
-
Method Details
-
resolveVariable
Resolves the specified variable name to a ValueExpression.- Parameters:
variable
- The variable name- Returns:
- the ValueExpression assigned to the variable, null if there is no previous assignment to this variable.
-
setVariable
Assign a ValueExpression to an EL variable, replacing any previously assignment to the same variable. The assignment for the variable is removed if the expression is null.- Parameters:
variable
- The variable nameexpression
- The ValueExpression to be assigned to the variable.- Returns:
- The previous ValueExpression assigned to this variable, null if there is no previous assignment to this variable.
-