public interface FlowHandler
Modifier and Type | Method and Description |
---|---|
MutableAttributeMap<java.lang.Object> |
createExecutionInputMap(javax.portlet.RenderRequest request)
Creates the flow execution input map to pass to a new instance of the flow being started in a render request.
|
MutableAttributeMap<java.lang.Object> |
createResourceExecutionInputMap(javax.portlet.ResourceRequest request)
Creates the flow execution input map to pass to a new instance of the flow being started in a resource request.
|
java.lang.String |
getFlowId()
Returns the id of the flow handled by this handler.
|
java.lang.String |
handleException(FlowException e,
javax.portlet.RenderRequest request,
javax.portlet.RenderResponse response)
Handles a flow exception that was not handled by the Web Flow system in render request.
|
boolean |
handleExecutionOutcome(FlowExecutionOutcome outcome,
javax.portlet.ActionRequest request,
javax.portlet.ActionResponse response)
Handles a specific flow execution outcome.
|
java.lang.String |
handleResourceException(FlowException e,
javax.portlet.ResourceRequest request,
javax.portlet.ResourceResponse response)
Handles a flow exception that was not handled by the Web Flow system in a resource request.
|
java.lang.String getFlowId()
MutableAttributeMap<java.lang.Object> createExecutionInputMap(javax.portlet.RenderRequest request)
request
- the current requestMutableAttributeMap<java.lang.Object> createResourceExecutionInputMap(javax.portlet.ResourceRequest request)
request
- the current requestboolean handleExecutionOutcome(FlowExecutionOutcome outcome, javax.portlet.ActionRequest request, javax.portlet.ActionResponse response) throws javax.portlet.PortletModeException
outcome
- the outcome that was reachedrequest
- the current action requestresponse
- the current action responsejavax.portlet.PortletModeException
- if this handler tries to change the portlet mode to something invalidjava.lang.String handleException(FlowException e, javax.portlet.RenderRequest request, javax.portlet.RenderResponse response)
e
- the unhandled exception originating from Spring Web Flow. May be thrown by the flow execution itself or
the flow executor system if no execution could be restored.request
- the current requestresponse
- the current responsenull
if the exception should be handled by
the callerjava.lang.String handleResourceException(FlowException e, javax.portlet.ResourceRequest request, javax.portlet.ResourceResponse response)
e
- the unhandled exception originating from Spring Web Flow. May be thrown by the flow execution itself or
the flow executor system if no execution could be restored.request
- the current requestresponse
- the current responsenull
if the exception should be handled by
the caller