All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.vt.middleware.ldap.servlets.session.DefaultSessionManager Maven / Gradle / Ivy

/*
  $Id: DefaultSessionManager.java 1330 2010-05-23 22:10:53Z dfisher $

  Copyright (C) 2003-2010 Virginia Tech.
  All rights reserved.

  SEE LICENSE FOR MORE INFORMATION

  Author:  Middleware Services
  Email:   [email protected]
  Version: $Revision: 1330 $
  Updated: $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
package edu.vt.middleware.ldap.servlets.session;

import javax.servlet.ServletException;
import javax.servlet.http.HttpSession;

/**
 * DefaultSessionManager provides a base class for session
 * management. After a successful authentication, this class sets the session id
 * that is set for the login servlet to the user name. After logout the session
 * id attribute is removed from the session. This class is used by default if no
 * custom session manager has been set.
 *
 * @author  Middleware Services
 * @version  $Revision: 1330 $ $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
 */
public class DefaultSessionManager extends SessionManager
{


  /**
   * This performs any actions necessary to login the suppled user.
   *
   * @param  session  HttpSession
   * @param  user  String
   *
   * @throws  ServletException  if an error occurs initializing the session
   */
  public void login(final HttpSession session, final String user)
    throws ServletException
  {
    if (this.logger.isDebugEnabled()) {
      this.logger.debug("Begin login method");
    }
    if (this.sessionId != null) {
      session.setAttribute(this.sessionId, user);
      if (this.logger.isDebugEnabled()) {
        this.logger.debug(
          "Set session attribute " + this.sessionId + " to " + user);
      }
    } else {
      if (this.logger.isDebugEnabled()) {
        this.logger.debug("Could not set session attribute, value is null");
      }
    }
  }


  /**
   * This performs any actions necessary to logout the suppled session.
   *
   * @param  session  HttpSession
   *
   * @throws  ServletException  if an error occurs cleaning up the session
   */
  public void logout(final HttpSession session)
    throws ServletException
  {
    if (this.logger.isDebugEnabled()) {
      this.logger.debug("Begin logout method");
    }
    if (this.sessionId != null) {
      final String user = (String) session.getAttribute(this.sessionId);
      session.removeAttribute(this.sessionId);
      if (this.logger.isDebugEnabled()) {
        this.logger.debug(
          "Removed session attribute " + this.sessionId + " for " + user);
      }
    } else {
      if (this.logger.isDebugEnabled()) {
        this.logger.debug("Could not remove session attribute, value is null");
      }
    }
    if (this.invalidateSession) {
      session.invalidate();
      if (this.logger.isDebugEnabled()) {
        this.logger.debug("Session invalidated");
      }
    } else {
      if (this.logger.isDebugEnabled()) {
        this.logger.debug("Session was not invalidated");
      }
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy