Package org.activiti.engine.impl.el
Class JuelExpression
- java.lang.Object
-
- org.activiti.engine.impl.el.JuelExpression
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
public class JuelExpression extends java.lang.Object implements Expression
Expression implementation backed by a JUELValueExpression
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
expressionText
protected javax.el.ValueExpression
valueExpression
-
Constructor Summary
Constructors Constructor Description JuelExpression(javax.el.ValueExpression valueExpression, java.lang.String expressionText)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getExpressionText()
java.lang.Object
getValue(VariableScope variableScope)
void
setValue(java.lang.Object value, VariableScope variableScope)
java.lang.String
toString()
-
-
-
Method Detail
-
getValue
public java.lang.Object getValue(VariableScope variableScope)
- Specified by:
getValue
in interfaceExpression
-
setValue
public void setValue(java.lang.Object value, VariableScope variableScope)
- Specified by:
setValue
in interfaceExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getExpressionText
public java.lang.String getExpressionText()
- Specified by:
getExpressionText
in interfaceExpression
-
-