java.io.Serializable |
HttpSession.getAttribute(java.lang.String name) |
Obtains the Object that is bound to the name for this
HttpSession .
|
java.util.Iterator<java.lang.String> |
HttpSession.getAttributeNames() |
Obtains an Iterator to the names of the bound Object
instances.
|
java.time.Instant |
HttpSession.getCreationTime() |
|
java.time.Instant |
HttpSession.getExpireTime() |
Obtains the time this HttpSession will be expired should it be
idle.
|
java.lang.String |
HttpSession.getSessionId() |
Obtains the session Id.
|
boolean |
HttpSession.isNew() |
|
void |
HttpSession.removeAttribute(java.lang.String name) |
Removes the bound Object by the name from this
HttpSession .
|
void |
HttpSession.setAttribute(java.lang.String name,
java.io.Serializable object) |
|
void |
HttpSession.setExpireTime(java.time.Instant expireTime) |
Specifies the time this HttpSession will expire if idle.
|