Interface SessionAttributeListener
-
public interface SessionAttributeListenerInterface for receiving notification events about Session attribute changes.Created: 2017. 6. 25.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidattributeAdded(Session session, java.lang.String name, java.lang.Object value)Receives notification that an attribute has been added to a session.voidattributeRemoved(Session session, java.lang.String name, java.lang.Object value)Receives notification that an attribute has been removed from a session.voidattributeReplaced(Session session, java.lang.String name, java.lang.Object value)Receives notification that an attribute has been replaced in a session.
-
-
-
Method Detail
-
attributeAdded
void attributeAdded(Session session, java.lang.String name, java.lang.Object value)
Receives notification that an attribute has been added to a session.- Parameters:
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 added
-
attributeRemoved
void attributeRemoved(Session session, java.lang.String name, java.lang.Object value)
Receives notification that an attribute has been removed from a session.- Parameters:
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 removed
-
attributeReplaced
void attributeReplaced(Session session, java.lang.String name, java.lang.Object value)
Receives notification that an attribute has been replaced in a session.- Parameters:
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 removed
-
-