public interface HttpSessionAttributeListener extends EventListener
通知イベントを受け取るためには、実装クラスをWebアプリケーションのデプロイメントディスクリプタで宣言するか、
WebListener
アノテーションを付けるか、
ServletContext
で定義されているaddListenerメソッドの1つを使って登録する必要があります。
このインターフェースの実装が呼び出される順序は定義されていません。
修飾子とタイプ | メソッドと説明 |
---|---|
default void |
attributeAdded(HttpSessionBindingEvent event)
セッションの属性が追加された通知を受け取ります。
|
default void |
attributeRemoved(HttpSessionBindingEvent event)
セッションの属性が削除された通知を受け取ります。
|
default void |
attributeReplaced(HttpSessionBindingEvent event)
セッションの属性が変更された通知を受け取ります。
|
default void attributeAdded(HttpSessionBindingEvent event)
event
- セッションと、セッションに追加された属性の名前と値を含むHttpSessionBindingEventdefault void attributeRemoved(HttpSessionBindingEvent event)
event
- セッションと、セッションから削除された属性の名前と値を含むHttpSessionBindingEventdefault void attributeReplaced(HttpSessionBindingEvent event)
event
- セッションと、セッションから変更された属性の名前と(古い)値を含むHttpSessionBindingEventCopyright © 1999-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. Portions Copyright © 1999-2002 The Apache Software Foundation. Portions Copyright © 2017- @megascus. Translated by @megascus.