| java.lang.Object org.springframework.webflow.action.ActionResultExposer
ActionResultExposer | public class ActionResultExposer implements Serializable(Code) | | Specifies how an action result value should be exposed to an executing flow.
The return value is exposed as an attribute in a configured scope.
See Also: EvaluateAction See Also: AbstractBeanInvokingAction author: Keith Donald |
ActionResultExposer | public ActionResultExposer(String resultName, ScopeType resultScope)(Code) | | Creates a action result exposer
Parameters: resultName - the result name Parameters: resultScope - the result scope |
exposeResult | public void exposeResult(Object result, RequestContext context)(Code) | | Expose given bean method return value in given flow execution request
context.
Parameters: result - the return value Parameters: context - the request context |
getResultName | public String getResultName()(Code) | | Returns name of the attribute to index the return value with.
|
getResultScope | public ScopeType getResultScope()(Code) | | Returns the scope the attribute indexing the return value.
|
|
|