1 /*2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.3 */4 package com.terracotta.session.util;5 6 import javax.servlet.ServletContext ;7 import javax.servlet.http.HttpSessionContext ;8 9 public interface ContextMgr {10 String getAppName();11 12 HttpSessionContext getSessionContext();13 14 ServletContext getServletContext();15 16 }17