Class EvaluateModel
java.lang.Object
org.springframework.webflow.engine.model.AbstractModel
org.springframework.webflow.engine.model.AbstractActionModel
org.springframework.webflow.engine.model.EvaluateModel
- All Implemented Interfaces:
Model
Model support for evaluate actions.
Evaluates an expression against the flow request context.
- Author:
- Scott Andrews
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionCreate a deep copy of this model.void
setExpression
(String expression) void
void
setResultType
(String resultType) Methods inherited from class org.springframework.webflow.engine.model.AbstractActionModel
fillCopy, getAttributes, isMergeableWith, merge, setAttributes
-
Constructor Details
-
EvaluateModel
Create an evaluate action model- Parameters:
expression
- the expression to evaluate
-
-
Method Details
-
createCopy
Description copied from interface:Model
Create a deep copy of this model. Needed when merging models and collections.- Returns:
- a deep copy of this model
-
getExpression
- Returns:
- the expression
-
setExpression
- Parameters:
expression
- the expression to set
-
getResult
- Returns:
- the result
-
setResult
- Parameters:
result
- the result to set
-
getResultType
- Returns:
- the result type
-
setResultType
- Parameters:
resultType
- the result type to set
-