Package org.infoglue.cms.security

Examples of org.infoglue.cms.security.AuthenticationModule.logoutUser()


      cookie_igpassword.setPath("/");
      cookie_igpassword.setMaxAge(0);
      getResponse().addCookie(cookie_igpassword);
   
    AuthenticationModule authenticationModule = AuthenticationModule.getAuthenticationModule(null, null, getRequest(), false);
    boolean redirected = authenticationModule.logoutUser(getRequest(), getResponse());
   
    if(redirected)
      return NONE;
    else
      return "logout";
View Full Code Here


      cookie_igpassword.setPath("/");
      cookie_igpassword.setMaxAge(0);
      getResponse().addCookie(cookie_igpassword);

    AuthenticationModule authenticationModule = AuthenticationModule.getAuthenticationModule(null, null, getRequest(), false);
    boolean redirected = authenticationModule.logoutUser(getRequest(), getResponse());
   
    if(redirected)
    {
      return NONE;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.