public DefaultActionInvocation(
      HttpServletRequest request, HttpServletResponse response, ActionMapping actionMapping) {
    this.request = request;
    this.response = response;
    this.actionMapping = actionMapping;
    interceptors = actionMapping.getIntercetors().iterator();

    action = Container.factory.buildAction(actionMapping);

    action.setRequest(request);
    action.setResponse(response);
  }