portal.http
Class PortalHttpSessionListener

java.lang.Object
  extended byportal.http.PortalHttpSessionListener
All Implemented Interfaces:
java.util.EventListener, javax.servlet.http.HttpSessionListener

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

A listener for new/destroyed HTTP sessions.

Configure this listener as the second listener in your web.xml:

 <listener>
      <listener-class>portal.http.PortalHttpSessionListener</listener-class>
 </listener>       
 

Version:
$Revision: 1.8 $
Author:
Thomas Weckert

Constructor Summary
PortalHttpSessionListener()
           
 
Method Summary
 void sessionCreated(javax.servlet.http.HttpSessionEvent event)
           
 void sessionDestroyed(javax.servlet.http.HttpSessionEvent event)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PortalHttpSessionListener

public PortalHttpSessionListener()
Method Detail

sessionCreated

public void sessionCreated(javax.servlet.http.HttpSessionEvent event)
Specified by:
sessionCreated in interface javax.servlet.http.HttpSessionListener
See Also:
HttpSessionListener.sessionCreated(javax.servlet.http.HttpSessionEvent)

sessionDestroyed

public void sessionDestroyed(javax.servlet.http.HttpSessionEvent event)
Specified by:
sessionDestroyed in interface javax.servlet.http.HttpSessionListener
See Also:
HttpSessionListener.sessionDestroyed(javax.servlet.http.HttpSessionEvent)