KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nextime > ion > admin > action > section > AddSectionAction


1 package org.nextime.ion.admin.action.section;
2
3 import java.io.IOException JavaDoc;
4
5 import javax.servlet.ServletException JavaDoc;
6 import javax.servlet.http.HttpServletRequest JavaDoc;
7 import javax.servlet.http.HttpServletResponse JavaDoc;
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.*;
14 import org.nextime.ion.framework.business.*;
15 import org.nextime.ion.framework.business.User;
16 import org.nextime.ion.framework.mapping.Mapping;
17
18 public class AddSectionAction extends Action {
19
20     public ActionForward perform(
21         ActionMapping mapping,
22         ActionForm form,
23         HttpServletRequest JavaDoc request,
24         HttpServletResponse JavaDoc response)
25         throws IOException JavaDoc, ServletException JavaDoc {
26
27         // pour situer la vue
28
request.setAttribute("view", "section");
29
30         String JavaDoc id = "";
31
32         try {
33
34             // pour remplir les listes select
35
Mapping.begin();
36             request.setAttribute("sectionList", Section.listAll());
37             Mapping.commit();
38
39             // si on a pas soumis le formulaire
40
if (request.getParameter("addSubmit") == null)
41                 return new ActionForward( mapping.getInput() );
42
43             // creation de l'objet
44
SectionForm f = (SectionForm) form;
45             Mapping.begin();
46             id = f.getId();
47             Section parent = null;
48             if( !f.getParent().equals("_NULL_") ) {
49                 parent = Section.getInstance(f.getParent());
50             }
51             Section u = Section.create( parent, f.getId());
52             Mapping.commit();
53
54         } catch (Exception JavaDoc e) {
55             Mapping.rollback();
56             request.setAttribute("error", e.getMessage());
57             return new ActionForward( mapping.getInput() );
58         }
59         
60         // on va passer l'id en request pour aller directement à
61
// la page d'edition
62
request.setAttribute("id", id);
63         
64         return mapping.findForward("success");
65     }
66
67 }
Popular Tags