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; 8 9 public interface Session extends HttpSession { 10 11 public SessionData getSessionData(); 12 13 public SessionId getSessionId(); 14 15 public boolean isValid(); 16 } 17