1 25 26 package org.objectweb.jonas.webapp.jonasadmin.security; 27 28 import java.io.IOException ; 29 30 import javax.management.ObjectName ; 31 import javax.servlet.ServletException ; 32 import javax.servlet.http.HttpServletRequest ; 33 import javax.servlet.http.HttpServletResponse ; 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 45 public class EditLdapRealmAction extends JonasBaseAction { 46 47 49 public ActionForward executeAction(ActionMapping p_Mapping, ActionForm p_Form 50 , HttpServletRequest p_Request, HttpServletResponse p_Response) 51 throws IOException , ServletException { 52 53 String sResource = p_Request.getParameter("resource"); 54 String sAction = p_Request.getParameter("action"); 55 56 LdapRealmForm oForm = null; 58 if (sResource != null) { 59 oForm = new LdapRealmForm(); 61 m_Session.setAttribute("ldapRealmForm", oForm); 62 oForm.setResource(sResource); 63 oForm.setAction("apply"); 64 } 65 else { 66 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 else { 75 oForm = (LdapRealmForm) m_Session.getAttribute("ldapRealmForm"); 76 oForm.reset(p_Mapping, p_Request); 77 } 78 } 79 80 try { 82 if (oForm.getAction().equals("apply") == true) { 84 ObjectName 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 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 t) { 115 addGlobalError(t); 116 saveErrors(p_Request, m_Errors); 117 return (p_Mapping.findForward("Global Error")); 118 } 119 return (p_Mapping.findForward("Ldap Realm")); 121 } 122 123 125 } 126 | Popular Tags |