01: package servletunit.struts.tests;
02:
03: import org.apache.struts.action.Action;
04: import org.apache.struts.action.ActionForward;
05: import org.apache.struts.action.ActionMapping;
06: import org.apache.struts.action.ActionForm;
07:
08: import javax.servlet.http.HttpServletRequest;
09: import javax.servlet.http.HttpServletResponse;
10:
11: /**
12: * Created by IntelliJ IDEA.
13: * User: deryl
14: * Date: Apr 13, 2003
15: * Time: 12:05:58 PM
16: * To change this template use Options | File Templates.
17: */
18: public class NullAction extends Action {
19:
20: public ActionForward execute(ActionMapping actionMapping,
21: ActionForm actionForm,
22: HttpServletRequest httpServletRequest,
23: HttpServletResponse httpServletResponse) throws Exception {
24: return null;
25: }
26:
27: }
|