1 package org.nextime.ion.admin.action.group; 2 3 import java.io.IOException ; 4 5 import javax.servlet.ServletException ; 6 import javax.servlet.http.HttpServletRequest ; 7 import javax.servlet.http.HttpServletResponse ; 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 import org.nextime.ion.framework.business.Group; 14 import org.nextime.ion.framework.mapping.Mapping; 15 16 public class DelGroupAction extends Action { 17 18 public ActionForward perform( 19 ActionMapping mapping, 20 ActionForm form, 21 HttpServletRequest request, 22 HttpServletResponse response) 23 throws IOException , ServletException { 24 25 request.setAttribute("view", "group"); 27 28 String id = request.getParameter("id"); 29 30 try { 31 Mapping.begin(); 32 Group.getInstance(id).remove(); 33 Mapping.commit(); 34 } catch (Exception e) { 35 Mapping.rollback(); 36 throw new ServletException (e); 37 } 38 39 return mapping.findForward("success"); 40 } 41 } | Popular Tags |