Rev 1051 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/****/package in.shop2020.creation.controllers;import org.apache.struts2.convention.annotation.Result;/**** @author rajveer**/@Result(name="success", type="redirectAction", params = {"actionName" , "login"})public class LogoutController extends BaseController {/****/private static final long serialVersionUID = 5390035354379263121L;public String index() throws SecurityException, Exception {if(isLoggedIn()){setUserAsLogout();}return "success";}}