KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > webapp > action > core > role > CallUpdateRoleAction


1 /*
2  * Copyright 2004 Blandware (http://www.blandware.com)
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 package com.blandware.atleap.webapp.action.core.role;
17
18 import com.blandware.atleap.common.Constants;
19 import com.blandware.atleap.model.core.Role;
20 import com.blandware.atleap.service.core.RoleManager;
21 import com.blandware.atleap.webapp.action.core.BaseAction;
22 import com.blandware.atleap.webapp.form.RoleForm;
23 import com.blandware.atleap.webapp.util.core.WebappConstants;
24 import com.blandware.atleap.webapp.util.core.WebappUtil;
25 import org.apache.struts.action.ActionForm;
26 import org.apache.struts.action.ActionForward;
27 import org.apache.struts.action.ActionMapping;
28 import org.apache.struts.action.ActionMessage;
29 import org.apache.struts.action.ActionMessages;
30
31 import javax.servlet.http.HttpServletRequest JavaDoc;
32 import javax.servlet.http.HttpServletResponse JavaDoc;
33
34 /**
35  * <p>Prepares form bean to update role's data
36  * </p>
37  * <p><a HREF="CallUpdateRoleAction.java.htm"><i>View Source</i></a></p>
38  * <p/>
39  *
40  * @author Sergey Zubtcovskii <a HREF="mailto:sergey.zubtcovskii@blandware.com">&lt;sergey.zubtcovskii@blandware.com&gt;</a>
41  * @version $Revision: 1.13 $ $Date: 2006/03/11 10:41:29 $
42  * @struts.action path="/core/role/callUpdate"
43  * name="roleForm"
44  * scope="request"
45  * validate="false"
46  * roles="core-role-update, core-role-view"
47  * @struts.action-forward name="updateRole"
48  * path=".core.role.update"
49  * @struts.action-forward name="listRoles"
50  * path="/core/role/list.do"
51  * redirect="true"
52  */

53 public final class CallUpdateRoleAction extends BaseAction {
54     /**
55      * @param mapping The ActionMapping used to select this instance
56      * @param form The optional ActionForm bean for this request (if any)
57      * @param request The HTTP request we are proceeding
58      * @param response The HTTP response we are creating
59      * @return an ActionForward instance describing where and how
60      * control should be forwarded, or null if response
61      * has already been completed
62      */

63     public ActionForward execute(ActionMapping mapping, ActionForm form,
64                                  HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response) throws Exception JavaDoc {
65
66         if ( isCancelled(request) ) {
67             return mapping.findForward("listRoles");
68         }
69
70         if ( !request.isUserInRole("core-role-update") ) {
71             response.sendError(HttpServletResponse.SC_FORBIDDEN);
72             return null;
73         }
74
75         RoleForm roleForm = (RoleForm) form;
76         String JavaDoc roleName = null;
77         if ( roleForm.getName() != null ) {
78             roleName = roleForm.getName();
79         } else if ( request.getSession().getAttribute(WebappConstants.ROLE_NAME_KEY) != null ) {
80             roleName = (String JavaDoc) request.getSession().getAttribute(WebappConstants.ROLE_NAME_KEY);
81         } else {
82             if ( log.isWarnEnabled() ) {
83                 log.warn("Missing role name. Returning to list...");
84             }
85             return mapping.findForward("listRoles");
86         }
87
88         RoleManager roleManager = (RoleManager) getBean(Constants.ROLE_MANAGER_BEAN);
89         Role role = roleManager.retrieveRole(roleName);
90         if ( role == null ) {
91             // role not found. it might be deleted by someone else
92
ActionMessages errors = new ActionMessages();
93             errors.add("roleNotFound", new ActionMessage("core.role.errors.notFound"));
94             saveErrors(request, errors);
95             return mapping.findForward("listRoles");
96         }
97
98         WebappUtil.copyProperties(roleForm, role, request);
99
100         // save transaction token in request
101
saveToken(request);
102         return mapping.findForward("updateRole");
103     }
104
105 }
Popular Tags