OpenMCAction.java
01 /*
02  * Created on Sep 21, 2007
03  */
04 package com.x8ing.mc.web;
05 
06 import javax.servlet.http.HttpServletRequest;
07 import javax.servlet.http.HttpServletResponse;
08 
09 import org.apache.struts.action.Action;
10 import org.apache.struts.action.ActionForm;
11 import org.apache.struts.action.ActionForward;
12 import org.apache.struts.action.ActionMapping;
13 
14 /**
15  @author pheusser
16  
17  */
18 public class OpenMCAction extends Action {
19 
20   public ActionForward execute(ActionMapping mapping, ActionForm inForm, HttpServletRequest request,
21       HttpServletResponse responsethrows Exception {
22 
23     return mapping.findForward("success");
24   }
25 
26 }