01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.terracotta.session;
06:
07: import javax.servlet.http.HttpSession;
08:
09: public interface Session extends HttpSession {
10:
11: public SessionData getSessionData();
12:
13: public SessionId getSessionId();
14:
15: public boolean isValid();
16:
17: public void associateRequest(SessionRequest request);
18:
19: public void clearRequest();
20: }
|