Package org.springmodules.feedxt.event

Examples of org.springmodules.feedxt.event.LogoutEvent


    public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
        this.applicationEventPublisher = applicationEventPublisher;
    }
   
    protected ModelAndView handleRequestInternal(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
        this.applicationEventPublisher.publishEvent(new LogoutEvent(this, httpServletRequest.getSession(), this.userHolder.getUser()));
       
        this.userHolder.setUser(null);
        httpServletRequest.getSession().invalidate();
        return new ModelAndView(this.logOutView);
    }
View Full Code Here

TOP

Related Classes of org.springmodules.feedxt.event.LogoutEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.