1 package org.nextime.ion.admin.action.category; 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.*; 14 import org.nextime.ion.framework.mapping.Mapping; 15 16 public class DelCategoryAction 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 String id = request.getParameter("id"); 26 27 try { 28 Mapping.begin(); 29 Category.getInstance(id).remove(); 30 Mapping.commit(); 31 } catch (Exception e) { 32 Mapping.rollback(); 33 throw new ServletException (e); 34 } 35 36 return mapping.findForward("success"); 37 } 38 } | Popular Tags |