diff --git a/spring-webflow-samples/booking-mvc/.classpath b/spring-webflow-samples/booking-mvc/.classpath
index 275fd7fb..13087534 100755
--- a/spring-webflow-samples/booking-mvc/.classpath
+++ b/spring-webflow-samples/booking-mvc/.classpath
@@ -2,13 +2,13 @@
* Expects URLs to launch flow to be of this pattern: + *
* *- * http://<host>/[app context path]/[app servlet path]/<flow id> - *- * - * For example: - * - *
- * http://localhost/springtravel/app/booking + * http://<host>/[app context path]/[app servlet path]/<flow path> ** + * As an example, the URL http://localhost/springtravel/app/booking would map to flow "booking", while the URL + * http://localhost/springtravel/app/hotels/booking would map to flow "hotels/booking". If the resource path ends in an + * extension it will be stripped; for example, /springtravel/app/booking.htm would still map to flow "booking". + *
* Expects URLs to resume flows to be of this pattern: + *
* *- * http://<host>/[app context path]/[app servlet path]/<flow id>?execution=<flow execution key> + * http://<host>/[app context path]/[app servlet path]/<flow path>?execution=<flow execution key> ** - * For example: - * - *
- * http://localhost/springtravel/app/booking?execution=c1v1 - *+ * As an example, the URL http://localhost/springtravel/app/hotels/booking?execution=e1s1 would attempt to resume + * execution "e1s1" of the "hotels/booking" flow. * * @author Keith Donald *