Package | Description |
---|---|
net.officefloor.plugin.servlet.web.http.session | |
net.officefloor.plugin.web.http.session |
Modifier and Type | Method and Description |
---|---|
Serializable |
ServletHttpSession.getAttribute(String name) |
Iterator<String> |
ServletHttpSession.getAttributeNames() |
long |
ServletHttpSession.getCreationTime() |
long |
ServletHttpSession.getExpireTime() |
String |
ServletHttpSession.getSessionId() |
boolean |
ServletHttpSession.isNew() |
void |
ServletHttpSession.removeAttribute(String name) |
void |
ServletHttpSession.setAttribute(String name,
Serializable object) |
void |
ServletHttpSession.setExpireTime(long expireTime) |
Modifier and Type | Method and Description |
---|---|
Serializable |
HttpSession.getAttribute(String name)
Obtains the
Object that is bound to the name for this
HttpSession . |
Iterator<String> |
HttpSession.getAttributeNames()
|
long |
HttpSession.getCreationTime()
Obtains the time this
HttpSession was created. |
long |
HttpSession.getExpireTime()
Obtains the time this
HttpSession will be expired should it be
idle. |
String |
HttpSession.getSessionId()
Obtains the session Id.
|
boolean |
HttpSession.isNew()
Indicates if this is a new
HttpSession . |
void |
HttpSession.removeAttribute(String name)
Removes the bound
Object by the name from this
HttpSession . |
void |
HttpSession.setAttribute(String name,
Serializable object)
Binds the
Object to the name within this HttpSession . |
void |
HttpSession.setExpireTime(long expireTime)
Specifies the time this
HttpSession will expire if idle. |
Copyright © 2005–2016. All rights reserved.