KickJava   Java API By Example, From Geeks To Geeks.

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


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: ApplyLdapRealmAction.java,v 1.8 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
46 public class ApplyLdapRealmAction extends BaseMemoryRealmAction {
47
48 // --------------------------------------------------------- Public Methods
49

50     public ActionForward executeAction(ActionMapping p_Mapping, ActionForm p_Form
51         , HttpServletRequest JavaDoc p_Request, HttpServletResponse JavaDoc p_Response)
52         throws IOException JavaDoc, ServletException JavaDoc {
53
54         // Form used
55
LdapRealmForm oForm = (LdapRealmForm) p_Form;
56
57         // Populate MBean
58
try {
59             // Create new
60
if (oForm.getAction().equals("create") == true) {
61                 oForm.setResource(oForm.getName());
62                 // Add resource
63
ObjectName JavaDoc oObjectName = JonasObjectName.securityService();
64                 String JavaDoc[] asParam = {
65                     oForm.getName(), oForm.getInitialContextFactory(), oForm.getProviderUrl()
66                     , oForm.getSecurityAuthentication(), oForm.getSecurityPrincipal()
67                     , oForm.getSecurityCredentials(), oForm.getSecurityProtocol()
68                     , oForm.getLanguage(), oForm.getReferral(), oForm.getStateFactories()
69                     , oForm.getAuthenticationMode(), oForm.getUserPasswordAttribute()
70                     , oForm.getUserRolesAttribute(), oForm.getRoleNameAttribute(), oForm.getBaseDn()
71                     , oForm.getUserDn(), oForm.getUserSearchFilter(), oForm.getRoleDn()
72                     , oForm.getRoleSearchFilter(), oForm.getAlgorithm()};
73                 String JavaDoc[] asSignature = {
74                     "java.lang.String", "java.lang.String", "java.lang.String", "java.lang.String"
75                     , "java.lang.String", "java.lang.String", "java.lang.String"
76                     , "java.lang.String", "java.lang.String", "java.lang.String"
77                     , "java.lang.String", "java.lang.String", "java.lang.String"
78                     , "java.lang.String", "java.lang.String", "java.lang.String"
79                     , "java.lang.String", "java.lang.String", "java.lang.String"
80                     , "java.lang.String"};
81                 JonasManagementRepr.invoke(oObjectName, "addJResourceLDAP", asParam, asSignature);
82                 // refresh tree
83
refreshTree();
84                 // Force the node selected in tree
85
m_WhereAreYou.selectNameNode(getTreeBranchName(DEPTH_SERVER)
86                     + WhereAreYou.NODE_SEPARATOR + "security" + WhereAreYou.NODE_SEPARATOR
87                     + "factory.ldap" + WhereAreYou.NODE_SEPARATOR + oForm.getName(), true);
88                 // To see the form
89
oForm.setAction("apply");
90             }
91             else {
92                 // Modify existing
93
ObjectName JavaDoc oObjectName = JonasObjectName.securityLdapFactory(oForm.getResource());
94                 setStringAttribute(oObjectName, "AuthenticationMode", oForm.getAuthenticationMode());
95                 setStringAttribute(oObjectName, "BaseDN", oForm.getBaseDn());
96                 setStringAttribute(oObjectName, "InitialContextFactory"
97                     , oForm.getInitialContextFactory());
98                 setStringAttribute(oObjectName, "Language", oForm.getLanguage());
99                 setStringAttribute(oObjectName, "ProviderUrl", oForm.getProviderUrl());
100                 setStringAttribute(oObjectName, "Referral", oForm.getReferral());
101                 setStringAttribute(oObjectName, "RoleDN", oForm.getRoleDn());
102                 setStringAttribute(oObjectName, "RoleNameAttribute", oForm.getRoleNameAttribute());
103                 setStringAttribute(oObjectName, "RoleSearchFilter", oForm.getRoleSearchFilter());
104                 setStringAttribute(oObjectName, "SecurityAuthentication"
105                     , oForm.getSecurityAuthentication());
106                 setStringAttribute(oObjectName, "SecurityCredentials", oForm.getSecurityCredentials());
107                 setStringAttribute(oObjectName, "SecurityPrincipal", oForm.getSecurityPrincipal());
108                 setStringAttribute(oObjectName, "SecurityProtocol", oForm.getSecurityProtocol());
109                 setStringAttribute(oObjectName, "StateFactories", oForm.getStateFactories());
110                 setStringAttribute(oObjectName, "UserDN", oForm.getUserDn());
111                 setStringAttribute(oObjectName, "UserPasswordAttribute"
112                     , oForm.getUserPasswordAttribute());
113                 setStringAttribute(oObjectName, "UserRolesAttribute", oForm.getUserRolesAttribute());
114                 setStringAttribute(oObjectName, "UserSearchFilter", oForm.getUserSearchFilter());
115                 setStringAttribute(oObjectName, "Algorithm", oForm.getAlgorithm());
116             }
117             // Save
118
if (oForm.isSave()) {
119                 ObjectName JavaDoc onRealm = JonasObjectName.securityLdapFactory(oForm.getResource());
120                 JonasManagementRepr.invoke(onRealm, "saveConfig", null, null);
121             }
122         }
123         catch (Throwable JavaDoc t) {
124             addGlobalError(t);
125             saveErrors(p_Request, m_Errors);
126             return (p_Mapping.findForward("Global Error"));
127         }
128         // Forward to the jsp.
129
return (p_Mapping.findForward("Ldap Realm"));
130     }
131
132 // --------------------------------------------------------- Protected Methods
133

134 }
135
Popular Tags