org.mortbay.jetty.servlet
public abstract class AbstractSessionManager.Session extends Object implements SessionManager.Session
Constructor Summary | |
---|---|
protected | Session(HttpServletRequest request) |
Method Summary | |
---|---|
void | access() |
Object | getAttribute(String name) |
Enumeration | getAttributeNames() |
long | getCreationTime() |
String | getId() |
long | getLastAccessedTime() |
int | getMaxInactiveInterval() |
ServletContext | getServletContext() |
HttpSessionContext | getSessionContext() |
Object | getValue(String name) |
String[] | getValueNames() |
void | invalidate() |
boolean | isNew() |
boolean | isValid() |
protected abstract Map | newAttributeMap() |
void | putValue(String name, Object value) |
void | removeAttribute(String name) |
void | removeValue(String name) |
void | setAttribute(String name, Object value) |
void | setMaxInactiveInterval(int secs) |
Deprecated:
Deprecated: As of Version 2.2, this method is replaced by {@link #getAttribute}
Deprecated: As of Version 2.2, this method is replaced by {@link #getAttributeNames}
Deprecated: As of Version 2.2, this method is replaced by {@link #setAttribute}
Deprecated: As of Version 2.2, this method is replaced by {@link #removeAttribute}