1 19 20 package org.efs.openreports.actions; 21 22 import com.opensymphony.xwork.ActionContext; 23 import com.opensymphony.xwork.ActionSupport; 24 25 public class LogoutAction extends ActionSupport 26 { 27 public String execute() 28 { 29 ActionContext.getContext().getSession().clear(); 30 ActionContext.getContext().getValueStack().setValue("loggedIn", new Boolean (false)); 31 32 return SUCCESS; 33 } 34 35 } | Popular Tags |