public interface SessionAttributeListener
Created: 2017. 6. 25.
| Modifier and Type | Method | Description |
|---|---|---|
void |
attributeAdded(Session session,
java.lang.String name,
java.lang.Object value) |
Receives notification that an attribute has been added to a session.
|
void |
attributeRemoved(Session session,
java.lang.String name,
java.lang.Object value) |
Receives notification that an attribute has been removed from a session.
|
void |
attributeReplaced(Session session,
java.lang.String name,
java.lang.Object value) |
Receives notification that an attribute has been replaced in a session.
|
void attributeAdded(Session session, java.lang.String name, java.lang.Object value)
session - the session to which the object is bound or unboundname - the name with which the object is bound or unboundvalue - the new value of the attribute that has been addedvoid attributeRemoved(Session session, java.lang.String name, java.lang.Object value)
session - the session to which the object is bound or unboundname - the name with which the object is bound or unboundvalue - the old value of the attribute that has been removedvoid attributeReplaced(Session session, java.lang.String name, java.lang.Object value)
session - the session to which the object is bound or unboundname - the name with which the object is bound or unboundvalue - the old value of the attribute that has been removedCopyright © 2008–2018 The Aspectran Project. All rights reserved.