From c370f422e4b4df4a0a7c487e026d9030fb374c2d Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Wed, 23 Apr 2008 23:16:14 +0000 Subject: [PATCH] polish --- .../springframework/webflow/mvc/portlet/FlowHandler.java | 2 +- .../springframework/webflow/mvc/servlet/FlowHandler.java | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java index 768a79ad..bf413b48 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/portlet/FlowHandler.java @@ -31,7 +31,7 @@ import org.springframework.webflow.execution.FlowExecutionOutcome; *
    *
  1. Launch executions of that flow with data in the execution input map *
  2. Handle outcomes reached by that flow in a custom manner - *
  3. Handle un-handled exceptions dealing with that flow in a custom manner + *
  4. Handle unhandled exceptions dealing with that flow in a custom manner *
* 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. diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java index 2fba7a79..d9a831c8 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/servlet/FlowHandler.java @@ -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 single flow definition. This helper is used to: + * A controller helper used for customizing access to a single flow definition in a Servlet enviroment. This + * helper is used to: *
    *
  1. Launch executions of that flow with data in the execution input map - *
  2. Handle outcomes reached by that flow in a custom manner. - *
  3. Handle un-handled exceptions dealing with that flow in a custom manner. + *
  4. Handle outcomes reached by that flow in a custom manner + *
  5. Handle unhandled exceptions dealing with that flow in a custom manner. *
* 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.