KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > webapp > admin > resources > SetUpUserDatabaseAction


1 /*
2  * Copyright 2002,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.apache.webapp.admin.resources;
18
19 import java.io.IOException JavaDoc;
20 import java.net.URLDecoder JavaDoc;
21 import java.util.Iterator JavaDoc;
22 import java.util.Locale JavaDoc;
23 import javax.management.Attribute JavaDoc;
24 import javax.management.MBeanServer JavaDoc;
25 import javax.management.MBeanServerFactory JavaDoc;
26 import javax.management.QueryExp JavaDoc;
27 import javax.management.Query JavaDoc;
28 import javax.management.ObjectInstance JavaDoc;
29 import javax.management.ObjectName JavaDoc;
30 import javax.management.JMException JavaDoc;
31 import javax.management.MBeanAttributeInfo JavaDoc;
32 import javax.management.MBeanOperationInfo JavaDoc;
33 import javax.management.MBeanInfo JavaDoc;
34 import javax.servlet.ServletException JavaDoc;
35 import javax.servlet.http.HttpServletRequest JavaDoc;
36 import javax.servlet.http.HttpServletResponse JavaDoc;
37 import javax.servlet.http.HttpSession JavaDoc;
38 import org.apache.struts.action.Action;
39 import org.apache.struts.action.ActionErrors;
40 import org.apache.struts.action.ActionForm;
41 import org.apache.struts.action.ActionForward;
42 import org.apache.struts.action.ActionMapping;
43 import org.apache.struts.util.MessageResources;
44 import org.apache.webapp.admin.ApplicationServlet;
45
46
47 /**
48  * <p>Implementation of <strong>Action</strong> that sets up and stashes
49  * a <code>UserDatabaseForm</code> bean in request scope. The form bean will have
50  * a null <code>objectName</code> property if this form represents a UserDatabase
51  * being added, or a non-null value for an existing UserDatabase.</p>
52  *
53  * @author Manveen Kaur
54  * @version $Revision: 1.5 $ $Date: 2004/10/18 06:37:54 $
55  * @since 4.1
56  */

57
58 public final class SetUpUserDatabaseAction extends Action {
59
60     // ----------------------------------------------------- Instance Variables
61

62
63     /**
64      * The MBeanServer we will be interacting with.
65      */

66     private MBeanServer JavaDoc mserver = null;
67
68
69     // --------------------------------------------------------- Public Methods
70

71
72     /**
73      * Process the specified HTTP request, and create the corresponding HTTP
74      * response (or forward to another web component that will create it).
75      * Return an <code>ActionForward</code> instance describing where and how
76      * control should be forwarded, or <code>null</code> if the response has
77      * already been completed.
78      *
79      * @param mapping The ActionMapping used to select this instance
80      * @param actionForm The optional ActionForm bean for this request (if any)
81      * @param request The HTTP request we are processing
82      * @param response The HTTP response we are creating
83      *
84      * @exception IOException if an input/output error occurs
85      * @exception ServletException if a servlet exception occurs
86      */

87     public ActionForward execute(ActionMapping mapping,
88                                  ActionForm form,
89                                  HttpServletRequest JavaDoc request,
90                                  HttpServletResponse JavaDoc response)
91         throws IOException JavaDoc, ServletException JavaDoc {
92
93         // Look up the components we will be using as needed
94
if (mserver == null) {
95             mserver = ((ApplicationServlet) getServlet()).getServer();
96         }
97         MessageResources resources = getResources(request);
98         HttpSession JavaDoc session = request.getSession();
99         Locale JavaDoc locale = getLocale(request);
100
101         // Set up the form bean based on the creating or editing state
102
String JavaDoc objectName = request.getParameter("objectName");
103         String JavaDoc domain = request.getParameter("domain");
104         
105         UserDatabaseForm userDatabaseForm = new UserDatabaseForm();
106         userDatabaseForm.setFactory
107                             (SaveUserDatabaseAction.USERDB_FACTORY);
108         userDatabaseForm.setType
109                             (ResourceUtils.USERDB_CLASS);
110         userDatabaseForm.setDomain(domain);
111
112         if (objectName == null) {
113             userDatabaseForm.setNodeLabel
114                 (resources.getMessage(locale, "resources.actions.userdb.create"));
115             userDatabaseForm.setObjectName(null);
116         } else {
117             userDatabaseForm.setNodeLabel
118                 (resources.getMessage(locale, "resources.actions.userdb.edit"));
119             userDatabaseForm.setObjectName(objectName);
120                            
121             String JavaDoc attribute = null;
122             try {
123                 ObjectName JavaDoc oname = new ObjectName JavaDoc(objectName);
124                 attribute = "name";
125                 userDatabaseForm.setName
126                     ((String JavaDoc) mserver.getAttribute(oname, attribute));
127                 attribute = "pathname";
128                 userDatabaseForm.setPath
129                     ((String JavaDoc) mserver.getAttribute(oname, attribute));
130                 attribute = "description";
131                 userDatabaseForm.setDescription
132                     ((String JavaDoc) mserver.getAttribute(oname, attribute));
133             } catch (Exception JavaDoc e) {
134                 getServlet().log
135                     (resources.getMessage(locale,
136                         "users.error.attribute.get", attribute), e);
137                 response.sendError
138                     (HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
139                      resources.getMessage
140                          (locale, "users.error.attribute.get", attribute));
141                 return (null);
142             }
143         }
144             
145         // Stash the form bean and forward to the display page
146
saveToken(request);
147         request.setAttribute("userDatabaseForm", userDatabaseForm);
148         return (mapping.findForward("UserDatabase"));
149
150     }
151 }
152
Popular Tags