javax.servlet.http
インタフェース HttpSessionListener

すべてのスーパーインタフェース:
java.util.EventListener

public interface HttpSessionListener
extends java.util.EventListener

Implementations of this interface may are notified of changes to the list of active sessions in a web application. To recieve notification events, the implementation class must be configured in the deployment descriptor for the web application.

導入されたバージョン:
v 2.3
関連項目:
HttpSessionEvent

メソッドの概要
 void sessionCreated(HttpSessionEvent se)
          Notification that a session was created.
 void sessionDestroyed(HttpSessionEvent se)
          Notification that a session was invalidated.
 

メソッドの詳細

sessionCreated

public void sessionCreated(HttpSessionEvent se)
Notification that a session was created.

パラメータ:
se - the notification event

sessionDestroyed

public void sessionDestroyed(HttpSessionEvent se)
Notification that a session was invalidated.

パラメータ:
se - the notification event


Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.