This commit is contained in:
Keith Donald
2008-04-23 23:16:14 +00:00
parent d2c3e25124
commit c370f422e4
2 changed files with 5 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ import org.springframework.webflow.execution.FlowExecutionOutcome;
* <ol>
* <li>Launch executions of that flow with data in the execution input map
* <li>Handle outcomes reached by that flow in a custom manner
* <li>Handle un-handled exceptions dealing with that flow in a custom manner
* <li>Handle unhandled exceptions dealing with that flow in a custom manner
* </ol>
* Such a handler can be visually thought of as a "flow reference" on a Garrett IA diagram. It holds a reference to the
* flow id to launch, how to provision its input, how to process its outcomes, and how to handle uncaught exceptions.

View File

@@ -23,11 +23,12 @@ import org.springframework.webflow.core.collection.MutableAttributeMap;
import org.springframework.webflow.execution.FlowExecutionOutcome;
/**
* A controller helper used for customizing access to a <i>single</i> flow definition. This helper is used to:
* A controller helper used for customizing access to a <i>single</i> flow definition in a Servlet enviroment. This
* helper is used to:
* <ol>
* <li>Launch executions of that flow with data in the execution input map
* <li>Handle outcomes reached by that flow in a custom manner.
* <li>Handle un-handled exceptions dealing with that flow in a custom manner.
* <li>Handle outcomes reached by that flow in a custom manner
* <li>Handle unhandled exceptions dealing with that flow in a custom manner.
* </ol>
* Such a handler can be visually thought of as a "flow reference" on a Garrett IA diagram. It holds a reference to the
* flow id to launch, how to provision its input, how to process its outcomes, and how to handle uncaught exceptions.