1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.web;
17
18 import javax.servlet.http.HttpServletRequest;
19 import javax.servlet.http.HttpServletResponse;
20
21 import org.apache.struts.action.ActionForm;
22 import org.apache.struts.action.ActionForward;
23 import org.apache.struts.action.ActionMapping;
24 import org.kuali.hr.time.base.web.TkAction;
25 import org.kuali.hr.time.util.TKContext;
26
27 public class SessionInvalidateAction extends TkAction {
28
29 public ActionForward invalidateUserSession (ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
30
31 TKContext.resetStorageMap();
32
33 return mapping.findForward("basic");
34 }
35 }