Package org.jboss.seam.security.events

Examples of org.jboss.seam.security.events.PostLoggedOutEvent


        activeGroups.clear();
    }

    public void logout() {
        if (isLoggedIn()) {
            PostLoggedOutEvent loggedOutEvent = new PostLoggedOutEvent(user);

            beanManager.fireEvent(new PreLoggedOutEvent());
            unAuthenticate();

            session.invalidate();
View Full Code Here


  
   public void logout()
   {
      if (isLoggedIn())
      {
         PostLoggedOutEvent loggedOutEvent = new PostLoggedOutEvent(user);
        
         beanManager.fireEvent(new PreLoggedOutEvent());
         unAuthenticate();
        
         // TODO - invalidate the session
View Full Code Here

TOP

Related Classes of org.jboss.seam.security.events.PostLoggedOutEvent

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.