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