lecturequiz.server.service
Class SessionManager

java.lang.Object
  extended by lecturequiz.server.service.SessionManager
All Implemented Interfaces:
java.util.EventListener, javax.servlet.http.HttpSessionListener

public class SessionManager
extends java.lang.Object
implements javax.servlet.http.HttpSessionListener


Constructor Summary
SessionManager()
           
 
Method Summary
 void sessionCreated(javax.servlet.http.HttpSessionEvent se)
          Dummy method to handle session creation, we don't need to do anything here
 void sessionDestroyed(javax.servlet.http.HttpSessionEvent se)
          Handles the destruction of a session
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SessionManager

public SessionManager()
Method Detail

sessionCreated

public void sessionCreated(javax.servlet.http.HttpSessionEvent se)
Dummy method to handle session creation, we don't need to do anything here

Specified by:
sessionCreated in interface javax.servlet.http.HttpSessionListener
Parameters:
se -

sessionDestroyed

public void sessionDestroyed(javax.servlet.http.HttpSessionEvent se)
Handles the destruction of a session

Specified by:
sessionDestroyed in interface javax.servlet.http.HttpSessionListener
Parameters:
se -