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.admin.form.GroupForm; 14 import org.nextime.ion.framework.business.Group; 15 import org.nextime.ion.framework.business.User; 16 import org.nextime.ion.framework.mapping.Mapping; 17 18 public class AddGroupAction extends Action { 19 20 public ActionForward perform( 21 ActionMapping mapping, 22 ActionForm form, 23 HttpServletRequest request, 24 HttpServletResponse response) 25 throws IOException , ServletException { 26 27 request.setAttribute("view", "group"); 29 30 String id = ""; 31 32 try { 33 34 Mapping.begin(); 36 request.setAttribute("userList", User.listAll()); 37 Mapping.commit(); 38 39 if (request.getParameter("addSubmit") == null) 41 return new ActionForward( mapping.getInput() ); 42 43 GroupForm f = (GroupForm) form; 45 Mapping.begin(); 46 id = f.getId(); 47 Group u = Group.create(f.getId()); 48 String [] g = f.getUsers(); 49 if (g != null) { 50 for (int i = 0; i < g.length; i++) { 51 u.addUser(User.getInstance(g[i])); 52 } 53 } 54 Mapping.commit(); 55 56 } catch (Exception e) { 57 Mapping.rollback(); 58 request.setAttribute("error", e.getMessage()); 59 return new ActionForward( mapping.getInput() ); 60 } 61 62 request.setAttribute("id", id); 65 66 return mapping.findForward("success"); 67 } 68 69 } | Popular Tags |