Source code: org/sbugs/actions/Home.java
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; version 2 only.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14 */
15 package org.sbugs.actions;
16
17 import org.apache.struts.action.*;
18 import javax.servlet.http.*;
19
20
21 public class Home extends Action
22 {
23 public ActionForward perform( ActionMapping mapping,
24 ActionForm form,
25 HttpServletRequest request,
26 HttpServletResponse response )
27 {
28 return mapping.findForward( "home" );
29 }
30 }