home *** CD-ROM | disk | FTP | other *** search
- package javax.servlet.http;
-
- public class HttpSessionBindingEvent extends HttpSessionEvent {
- private String name;
- private Object value;
-
- public HttpSessionBindingEvent(HttpSession session, String name) {
- super(session);
- this.name = name;
- }
-
- public HttpSessionBindingEvent(HttpSession session, String name, Object value) {
- super(session);
- this.name = name;
- this.value = value;
- }
-
- public HttpSession getSession() {
- return super.getSession();
- }
-
- public String getName() {
- return this.name;
- }
-
- public Object getValue() {
- return this.value;
- }
- }
-