KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > terracotta > session > Session


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package com.terracotta.session;
6
7 import javax.servlet.http.HttpSession JavaDoc;
8
9 public interface Session extends HttpSession JavaDoc {
10
11   public SessionData getSessionData();
12
13   public SessionId getSessionId();
14
15   public boolean isValid();
16 }
17
Popular Tags