flow handler fixes

This commit is contained in:
Keith Donald
2008-04-11 21:56:22 +00:00
parent 37a642ff74
commit c257fcb68f
5 changed files with 44 additions and 32 deletions

View File

@@ -9,6 +9,6 @@ import org.springframework.webflow.mvc.servlet.AbstractFlowHandler;
public class BookingFlowHandler extends AbstractFlowHandler {
public String handleExecutionOutcome(String outcome, AttributeMap output, HttpServletRequest request,
HttpServletResponse response) {
return "/spring/hotels/index";
return "hotels/index";
}
}