| |
|
| java.lang.Object java.util.EventObject javax.servlet.http.HttpSessionEvent javax.servlet.http.HttpSessionBindingEvent
Method Summary | |
public String | getName() Returns the name with which the attribute is bound to or
unbound from the session. | public HttpSession | getSession() Return the session that changed. | public Object | getValue() Returns the value of the attribute that has been added, removed or replaced.
If the attribute was added (or bound), this is the value of the attribute. |
getName | public String getName()(Code) | | Returns the name with which the attribute is bound to or
unbound from the session.
a string specifying the name with whichthe object is bound to or unbound fromthe session |
getValue | public Object getValue()(Code) | | Returns the value of the attribute that has been added, removed or replaced.
If the attribute was added (or bound), this is the value of the attribute. If the attribute was
removed (or unbound), this is the value of the removed attribute. If the attribute was replaced, this
is the old value of the attribute.
since: 2.3 |
|
|
|