Package org.camunda.bpm.engine.impl.el
Class ElValueProvider
- java.lang.Object
-
- org.camunda.bpm.engine.impl.el.ElValueProvider
-
- All Implemented Interfaces:
Comparable<ElValueProvider>,ParameterValueProvider
public class ElValueProvider extends Object implements ParameterValueProvider, Comparable<ElValueProvider>
Makes it possible to use expression inIoParametermappings.- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected Expressionexpression
-
Constructor Summary
Constructors Constructor Description ElValueProvider(Expression expression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(ElValueProvider o)ExpressiongetExpression()ObjectgetValue(VariableScope variableScope)voidsetExpression(Expression expression)
-
-
-
Field Detail
-
expression
protected Expression expression
-
-
Constructor Detail
-
ElValueProvider
public ElValueProvider(Expression expression)
-
-
Method Detail
-
getValue
public Object getValue(VariableScope variableScope)
- Specified by:
getValuein interfaceParameterValueProvider- Parameters:
variableScope- the scope in which the value is to be resolved.- Returns:
- the value
-
getExpression
public Expression getExpression()
-
setExpression
public void setExpression(Expression expression)
-
compareTo
public int compareTo(ElValueProvider o)
- Specified by:
compareToin interfaceComparable<ElValueProvider>
-
-