Package org.activiti.engine.impl.el
Class FixedValue
- java.lang.Object
-
- org.activiti.engine.impl.el.FixedValue
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
public class FixedValue extends java.lang.Object implements Expression
Expression that always returns the same value whengetValue
is called. Setting of the value is not supported.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FixedValue(java.lang.Object value)
-
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)
-
-
-
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
-
getExpressionText
public java.lang.String getExpressionText()
- Specified by:
getExpressionText
in interfaceExpression
-
-