Package org.camunda.bpm.engine.impl.el
Class JuelExpression
- java.lang.Object
-
- org.camunda.bpm.engine.impl.el.JuelExpression
-
- All Implemented Interfaces:
Expression,Expression
public class JuelExpression extends Object implements Expression
Expression implementation backed by a JUELValueExpression.- Author:
- Frederik Heremans, Joram Barrez
-
-
Field Summary
Fields Modifier and Type Field Description protected JuelExpressionManagerexpressionManagerprotected StringexpressionTextprotected ValueExpressionvalueExpression
-
Constructor Summary
Constructors Constructor Description JuelExpression(ValueExpression valueExpression, JuelExpressionManager expressionManager, String expressionText)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExpressionText()ObjectgetValue(VariableScope variableScope)ObjectgetValue(VariableScope variableScope, BaseDelegateExecution contextExecution)booleanisLiteralText()voidsetValue(Object value, VariableScope variableScope)voidsetValue(Object value, VariableScope variableScope, BaseDelegateExecution contextExecution)StringtoString()
-
-
-
Field Detail
-
expressionText
protected String expressionText
-
valueExpression
protected ValueExpression valueExpression
-
expressionManager
protected JuelExpressionManager expressionManager
-
-
Constructor Detail
-
JuelExpression
public JuelExpression(ValueExpression valueExpression, JuelExpressionManager expressionManager, String expressionText)
-
-
Method Detail
-
getValue
public Object getValue(VariableScope variableScope)
- Specified by:
getValuein interfaceExpression
-
getValue
public Object getValue(VariableScope variableScope, BaseDelegateExecution contextExecution)
- Specified by:
getValuein interfaceExpression
-
setValue
public void setValue(Object value, VariableScope variableScope)
- Specified by:
setValuein interfaceExpression
-
setValue
public void setValue(Object value, VariableScope variableScope, BaseDelegateExecution contextExecution)
- Specified by:
setValuein interfaceExpression
-
isLiteralText
public boolean isLiteralText()
- Specified by:
isLiteralTextin interfaceExpression
-
getExpressionText
public String getExpressionText()
- Specified by:
getExpressionTextin interfaceExpression
-
-