Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KualiLogoutAction |
|
| 2.0;2 |
1 | /* | |
2 | * Copyright 2006-2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php | |
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 | ||
17 | package org.kuali.rice.krad.web.struts.action; | |
18 | ||
19 | import org.apache.struts.action.Action; | |
20 | import org.apache.struts.action.ActionForm; | |
21 | import org.apache.struts.action.ActionForward; | |
22 | import org.apache.struts.action.ActionMapping; | |
23 | import org.kuali.rice.core.api.config.property.ConfigContext; | |
24 | import org.kuali.rice.core.framework.services.CoreFrameworkServiceLocator; | |
25 | import org.kuali.rice.krad.util.KRADConstants; | |
26 | ||
27 | import javax.servlet.http.HttpServletRequest; | |
28 | import javax.servlet.http.HttpServletResponse; | |
29 | ||
30 | /** | |
31 | * This class handles the logout. After logout it will do an external redirect to an url | |
32 | * specified by a Parameter (LOGOUT_REDIRECT_URL) or a config property (rice.portal.logout.redirectUrl). | |
33 | * | |
34 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
35 | * | |
36 | */ | |
37 | 0 | public class KualiLogoutAction extends Action { |
38 | ||
39 | /** | |
40 | * Invalidates the users session and redirects to a configurable url after logout. | |
41 | * | |
42 | */ | |
43 | @Override | |
44 | public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { | |
45 | 0 | String redirectString = null; |
46 | ||
47 | // can't check for the existence of a simple parameter, so catch exception and | |
48 | // defualt to config parameter | |
49 | try { | |
50 | 0 | redirectString = CoreFrameworkServiceLocator.getParameterService().getParameterValueAsString(KRADConstants.KRAD_NAMESPACE, KRADConstants.DetailTypes.ALL_DETAIL_TYPE, KRADConstants.LOGOFF_REDIRECT_URL_PARAMETER); |
51 | } | |
52 | 0 | catch(IllegalArgumentException ex) { |
53 | 0 | redirectString = ConfigContext.getCurrentContextConfig().getProperty(KRADConstants.LOGOFF_REDIRECT_URL_PROPERTY); |
54 | 0 | } |
55 | ||
56 | 0 | request.getSession().invalidate(); |
57 | ||
58 | 0 | return new ActionForward(redirectString, true); |
59 | } | |
60 | ||
61 | } |