类 SessionScope.DestructionCallback
java.lang.Object
cn.taketoday.web.context.support.SessionScope.DestructionCallback
- 所有已实现的接口:
WebSessionAttributeListener,EventListener
- 封闭类:
- SessionScope
static final class SessionScope.DestructionCallback
extends Object
implements WebSessionAttributeListener
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidattributeRemoved(WebSession session, String attributeName, Object value) Notification that an attribute has been removed from a session.从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 cn.taketoday.session.WebSessionAttributeListener
attributeAdded, attributeReplaced
-
构造器详细资料
-
DestructionCallback
DestructionCallback()
-
-
方法详细资料
-
attributeRemoved
从接口复制的说明:WebSessionAttributeListenerNotification that an attribute has been removed from a session. Called after the attribute is removed. The default implementation is a NO-OP.- 指定者:
attributeRemoved在接口中WebSessionAttributeListener- 参数:
session- web session to hold this attributeattributeName- name of attributevalue- attribute value
-