| |
|
| java.lang.Object org.wings.session.SessionManager
SessionManager | final public class SessionManager (Code) | | A global way to access the current session.
author: Holger Engels |
Method Summary | |
public static Session | getSession() Get the Session that is currently associated with this Thread. | public static void | removeSession() | public static void | setSession(Session session) Associate the Session with the current Thread. |
getSession | public static Session getSession()(Code) | | Get the Session that is currently associated with this Thread.
the Session |
removeSession | public static void removeSession()(Code) | | |
setSession | public static void setSession(Session session)(Code) | | Associate the Session with the current Thread.
This method must only be called by the SessionServlet before
a request is going to be dispatched.
Parameters: session - the Session |
|
|
|