Java javax.servlet.http HttpSessionBindingEvent fields, constructors, methods, implement or subclass

Example usage for Java javax.servlet.http HttpSessionBindingEvent fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.servlet.http HttpSessionBindingEvent.

The text is from its open source code.

Constructor

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.

Method

StringgetName()
Returns the name with which the attribute is bound to or unbound from the session.
HttpSessiongetSession()
Return the session that changed.
ObjectgetSource()
The object on which the Event initially occurred.
ObjectgetValue()
Returns the value of the attribute that has been added, removed or replaced.