ActionForward forwardTo( ActionForward fwd, ActionMapping mapping, PageFlowExceptionConfig exceptionConfig,
String actionName, ModuleConfig altModuleConfig, ActionForm form,
HttpServletRequest request, HttpServletResponse response, ServletContext servletContext )
{
// This method is overridden in PageFlowController. Even though we're just delegating here, we can't remove it.
ActionForwardHandler handler = Handlers.get( servletContext ).getActionForwardHandler();
FlowControllerHandlerContext context = new FlowControllerHandlerContext( request, response, this );
return handler.processForward( context, fwd, mapping, exceptionConfig, actionName, altModuleConfig, form );
}