![]() |
![]() The Session object is mostly a reflection from the Servlet interface with the following changes:
The JSP session object is a Session object.
Time in milliseconds when the session was created. Read-only.
The session's unique identifier. Read-only.
The session's last accessed time. Read-only.
Returns the value of the session variable
.
Applications can store arbitrary data in the session variables.
Returns a string array of the session variable names.
Returns an enumeration of the session variable names.
Sets
as the value of the session variable
.
Removes the session variable
.
True if the session is new. The session is considered new
if the client has never returned a session cookie.
Invalidates the current session.
|