1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.kns.web.struts.action;
18
19 import javax.servlet.http.HttpServletRequest;
20 import javax.servlet.http.HttpServletResponse;
21
22 import org.apache.struts.action.Action;
23 import org.apache.struts.action.ActionForm;
24 import org.apache.struts.action.ActionForward;
25 import org.apache.struts.action.ActionMapping;
26 import org.kuali.rice.core.util.RiceConstants;
27
28
29
30
31
32
33
34
35 public class KualiSimpleAction extends Action {
36 public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
37 ActionForward returnForward = mapping.findForward(RiceConstants.MAPPING_BASIC);
38
39 return returnForward;
40 }
41 }