View Javadoc

1   // $Id$
2   // [JMP, 08.10.2004] created this file.
3   package com.pnpconsult.zeiterfassung.actions.dbpatch;
4   
5   import javax.servlet.http.HttpServletRequest;
6   import javax.servlet.http.HttpServletResponse;
7   
8   import org.apache.struts.action.Action;
9   import org.apache.struts.action.ActionForm;
10  import org.apache.struts.action.ActionForward;
11  import org.apache.struts.action.ActionMapping;
12  
13  /***
14   * @author <a href="mailto:mpetersen@users.sf.net">Moritz Petersen</a>
15   * @version $Id$
16   * 
17   * @struts.action path="/secure/dbpatch/DbPatch" name="dbPatchForm" scope="request"
18   * @struts.action-forward name="jsp" path="/secure/dbpatch/index.jsp"
19   */
20  public class DbPatchAction extends Action
21  {
22  
23      public ActionForward execute(
24          ActionMapping map,
25          ActionForm form,
26          HttpServletRequest req,
27          HttpServletResponse resp) throws Exception
28      {
29          return map.findForward("jsp");
30      }
31  }