Example usage for Java com.vaadin.server WrappedSession fields, constructors, methods, implement or subclass
The text is from its open source code.
Object | getAttribute(String name) Gets an attribute from this session. |
String | getId() Gets a string with a unique identifier for the session. |
int | getMaxInactiveInterval() Returns the maximum time interval, in seconds, that this session will be kept open between client accesses. |
void | invalidate() Invalidates this session then unbinds any objects bound to it. |
void | removeAttribute(String name) Removes the object bound with the specified name from this session. |
void | setAttribute(String name, Object value) Saves an attribute value in this session. |
void | setMaxInactiveInterval(int interval) Specifies the time, in seconds, between client requests before the servlet container will invalidate this session. |