assert fc != null : "no FlowController for request " + request.getRequestURI();
assert fc.getClass().getName().equals( actionMapping.getParameter() )
: "current page flow type " + fc.getClass().getName() + " does not match type specified in "
+ FLOW_CONTROLLER_ACTION_CLASSNAME + ": " + actionMapping.getParameter();
Action action = new FlowControllerAction( fc );
action.setServlet( servlet );
return action;
}
return super.processActionCreate( request, response, actionMapping );
}