Example usage for Java javax.servlet.http HttpSessionBindingEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
HttpSessionBindingEvent(HttpSession session, String name, Object value) Constructs an event that notifies an object that it has been bound to or unbound from a session. | |
HttpSessionBindingEvent(HttpSession session, String name) Constructs an event that notifies an object that it has been bound to or unbound from a session. |
String | getName() Returns the name with which the attribute is bound to or unbound from the session. |
HttpSession | getSession() Return the session that changed. |
Object | getSource() The object on which the Event initially occurred. |
Object | getValue() Returns the value of the attribute that has been added, removed or replaced. |