1 27 package olstore.action; 28 29 import javax.servlet.http.*; 30 import org.apache.struts.action.*; 31 32 33 public class ItemDispatchActions extends DemoBaseDispatchActions { 34 35 39 public ActionForward view ( ActionMapping mapping, 40 ActionForm form, 41 HttpServletRequest request, 42 HttpServletResponse response 43 ) throws Exception { 44 45 return mapping.findForward ( "createItem" ); 48 49 } 50 51 52 56 public ActionForward update ( ActionMapping mapping, 57 ActionForm form, 58 HttpServletRequest request, 59 HttpServletResponse response 60 ) throws Exception { 61 62 66 return mapping.findForward ( "createItem" ); 67 } 68 69 } 70 | Popular Tags |