Class JuelExpression
- java.lang.Object
-
- org.camunda.bpm.dmn.engine.impl.el.JuelExpression
-
- All Implemented Interfaces:
ElExpression
public class JuelExpression extends Object implements ElExpression
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected JuelElContextFactory
elContextFactory
protected javax.el.ValueExpression
expression
-
Constructor Summary
Constructors Constructor Description JuelExpression(javax.el.ValueExpression expression, JuelElContextFactory elContextFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getValue(VariableContext variableContext)
Execute the expression and return the valueString
toString()
-
-
-
Field Detail
-
expression
protected final javax.el.ValueExpression expression
-
elContextFactory
protected final JuelElContextFactory elContextFactory
-
-
Constructor Detail
-
JuelExpression
public JuelExpression(javax.el.ValueExpression expression, JuelElContextFactory elContextFactory)
-
-
Method Detail
-
getValue
public Object getValue(VariableContext variableContext)
Description copied from interface:ElExpression
Execute the expression and return the value- Specified by:
getValue
in interfaceElExpression
- Parameters:
variableContext
- the context in which the expression should be executed- Returns:
- the value
-
-