KickJava   Java API By Example, From Geeks To Geeks.

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


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: EditLdapRealmAction.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.JonasObjectName;
39 import org.objectweb.jonas.webapp.jonasadmin.JonasBaseAction;
40 import org.objectweb.jonas.webapp.jonasadmin.WhereAreYou;
41
42 /**
43  * @author Michel-Ange ANTON
44  */

45 public class EditLdapRealmAction extends JonasBaseAction {
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         String JavaDoc sResource = p_Request.getParameter("resource");
54         String JavaDoc sAction = p_Request.getParameter("action");
55
56         // Form used
57
LdapRealmForm oForm = null;
58         if (sResource != null) {
59             // Editing a new realm
60
oForm = new LdapRealmForm();
61             m_Session.setAttribute("ldapRealmForm", oForm);
62             oForm.setResource(sResource);
63             oForm.setAction("apply");
64         }
65         else {
66             // Creating
67
if ((sAction != null) && (sAction.equals("create") == true)) {
68                 oForm = new LdapRealmForm();
69                 oForm.reset(p_Mapping, p_Request);
70                 m_Session.setAttribute("ldapRealmForm", oForm);
71                 oForm.setAction("create");
72             }
73             // Editing a realm in session (Show after apply or save)
74
else {
75                 oForm = (LdapRealmForm) m_Session.getAttribute("ldapRealmForm");
76                 oForm.reset(p_Mapping, p_Request);
77             }
78         }
79
80         // Populate
81
try {
82             // Populate only if action is 'apply'
83
if (oForm.getAction().equals("apply") == true) {
84                 ObjectName JavaDoc oObjectName = JonasObjectName.securityLdapFactory(oForm.getResource());
85                 oForm.setName(getStringAttribute(oObjectName, "Name"));
86                 oForm.setAuthenticationMode(getStringAttribute(oObjectName, "AuthenticationMode"));
87                 oForm.setBaseDn(getStringAttribute(oObjectName, "BaseDN"));
88                 oForm.setInitialContextFactory(getStringAttribute(oObjectName
89                     , "InitialContextFactory"));
90                 oForm.setLanguage(getStringAttribute(oObjectName, "Language"));
91                 oForm.setProviderUrl(getStringAttribute(oObjectName, "ProviderUrl"));
92                 oForm.setReferral(getStringAttribute(oObjectName, "Referral"));
93                 oForm.setRoleDn(getStringAttribute(oObjectName, "RoleDN"));
94                 oForm.setRoleNameAttribute(getStringAttribute(oObjectName, "RoleNameAttribute"));
95                 oForm.setRoleSearchFilter(getStringAttribute(oObjectName, "RoleSearchFilter"));
96                 oForm.setSecurityAuthentication(getStringAttribute(oObjectName
97                     , "SecurityAuthentication"));
98                 oForm.setSecurityCredentials(getStringAttribute(oObjectName, "SecurityCredentials"));
99                 oForm.setSecurityPrincipal(getStringAttribute(oObjectName, "SecurityPrincipal"));
100                 oForm.setSecurityProtocol(getStringAttribute(oObjectName, "SecurityProtocol"));
101                 oForm.setStateFactories(getStringAttribute(oObjectName, "StateFactories"));
102                 oForm.setUserDn(getStringAttribute(oObjectName, "UserDN"));
103                 oForm.setUserPasswordAttribute(getStringAttribute(oObjectName
104                     , "UserPasswordAttribute"));
105                 oForm.setUserRolesAttribute(getStringAttribute(oObjectName, "UserRolesAttribute"));
106                 oForm.setUserSearchFilter(getStringAttribute(oObjectName, "UserSearchFilter"));
107                 oForm.setAlgorithm(getStringAttribute(oObjectName, "Algorithm"));
108                 // Force the node selected in tree
109
m_WhereAreYou.selectNameNode(getTreeBranchName(DEPTH_SERVER)
110                     + WhereAreYou.NODE_SEPARATOR + "security" + WhereAreYou.NODE_SEPARATOR
111                     + "factory.ldap" + WhereAreYou.NODE_SEPARATOR + oForm.getName(), true);
112             }
113         }
114         catch (Throwable JavaDoc t) {
115             addGlobalError(t);
116             saveErrors(p_Request, m_Errors);
117             return (p_Mapping.findForward("Global Error"));
118         }
119         // Forward to the jsp.
120
return (p_Mapping.findForward("Ldap Realm"));
121     }
122
123 // --------------------------------------------------------- Protected Methods
124

125 }
126
Popular Tags