KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > webapp > jonasadmin > security > ApplyDatasourceRealmAction


1 /*
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: ApplyDatasourceRealmAction.java,v 1.7 2004/03/19 14:31:48 sauthieg Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.webapp.jonasadmin.security;
27
28 import java.io.IOException JavaDoc;
29
30 import javax.management.ObjectName JavaDoc;
31 import javax.servlet.ServletException JavaDoc;
32 import javax.servlet.http.HttpServletRequest JavaDoc;
33 import javax.servlet.http.HttpServletResponse JavaDoc;
34
35 import org.apache.struts.action.ActionForm;
36 import org.apache.struts.action.ActionForward;
37 import org.apache.struts.action.ActionMapping;
38 import org.objectweb.jonas.jmx.JonasManagementRepr;
39 import org.objectweb.jonas.jmx.JonasObjectName;
40 import org.objectweb.jonas.webapp.jonasadmin.WhereAreYou;
41
42 /**
43  * @author Michel-Ange ANTON
44  */

45 public class ApplyDatasourceRealmAction extends BaseMemoryRealmAction {
46
47 // --------------------------------------------------------- Public Methods
48

49     public ActionForward executeAction(ActionMapping p_Mapping, ActionForm p_Form
50         , HttpServletRequest JavaDoc p_Request, HttpServletResponse JavaDoc p_Response)
51         throws IOException JavaDoc, ServletException JavaDoc {
52
53         // Form used
54
DatasourceRealmForm oForm = (DatasourceRealmForm) p_Form;
55
56         // Populate MBean
57
try {
58             // Create new
59
if (oForm.getAction().equals("create") == true) {
60                 oForm.setResource(oForm.getName());
61                 // Add resource
62
ObjectName JavaDoc oObjectName = JonasObjectName.securityService();
63                 String JavaDoc[] asParam = {
64                     oForm.getName(), oForm.getDsName(), oForm.getUserTable()
65                     , oForm.getUserTableUsernameCol(), oForm.getUserTablePasswordCol()
66                     , oForm.getRoleTable(), oForm.getRoleTableRolenameCol()
67                     , oForm.getRoleTableUsernameCol(), oForm.getAlgorithm()};
68                 String JavaDoc[] asSignature = {
69                     "java.lang.String", "java.lang.String", "java.lang.String", "java.lang.String"
70                     , "java.lang.String", "java.lang.String", "java.lang.String"
71                     , "java.lang.String", "java.lang.String"};
72                 JonasManagementRepr.invoke(oObjectName, "addJResourceDS", asParam, asSignature);
73                 // refresh tree
74
refreshTree();
75                 // Force the node selected in tree
76
m_WhereAreYou.selectNameNode(getTreeBranchName(DEPTH_SERVER)
77                     + WhereAreYou.NODE_SEPARATOR + "security" + WhereAreYou.NODE_SEPARATOR
78                     + "factory.datasource" + WhereAreYou.NODE_SEPARATOR + oForm.getName(), true);
79                 // To see the form
80
oForm.setAction("apply");
81             }
82             else {
83                 // Modify existing
84
ObjectName JavaDoc oObjectName = JonasObjectName.securityDatasourceFactory(oForm.
85                     getResource());
86                 setStringAttribute(oObjectName, "DsName", oForm.getDsName());
87                 setStringAttribute(oObjectName, "RoleTable", oForm.getRoleTable());
88                 setStringAttribute(oObjectName, "RoleTableRolenameCol"
89                     , oForm.getRoleTableRolenameCol());
90                 setStringAttribute(oObjectName, "RoleTableUsernameCol"
91                     , oForm.getRoleTableUsernameCol());
92                 setStringAttribute(oObjectName, "UserTable", oForm.getUserTable());
93                 setStringAttribute(oObjectName, "UserTablePasswordCol"
94                     , oForm.getUserTablePasswordCol());
95                 setStringAttribute(oObjectName, "UserTableUsernameCol"
96                     , oForm.getUserTableUsernameCol());
97                 setStringAttribute(oObjectName, "Algorithm", oForm.getAlgorithm());
98             }
99             // Save
100
if (oForm.isSave()) {
101                 ObjectName JavaDoc onRealm = JonasObjectName.securityDatasourceFactory(oForm.getResource());
102                 JonasManagementRepr.invoke(onRealm, "saveConfig", null, null);
103             }
104         }
105         catch (Throwable JavaDoc t) {
106             addGlobalError(t);
107             saveErrors(p_Request, m_Errors);
108             return (p_Mapping.findForward("Global Error"));
109         }
110         // Forward to the jsp.
111
return (p_Mapping.findForward("Datasource Realm"));
112     }
113
114 // --------------------------------------------------------- Protected Methods
115

116 }
117
Popular Tags