| Interface | Description |
|---|---|
| SessionStore |
| Class | Description |
|---|---|
| DefaultSessionStore | |
| SessionCookie |
Generates Session Cookies, and sets the cookie header.
|
| SessionHandler |
// Store "$session" block (in meta)
SessionHandler sessionHandler = new SessionHandler(broker);
gateway.setBeforeCall(sessionHandler.beforeCall());
gateway.setAfterCall(sessionHandler.afterCall());
// Session cookie handling
gateway.use(new SessionCookie());
|