KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > terracotta > session > util > ContextMgr


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 JavaDoc;
7 import javax.servlet.http.HttpSessionContext JavaDoc;
8
9 public interface ContextMgr {
10   String JavaDoc getAppName();
11
12   HttpSessionContext JavaDoc getSessionContext();
13
14   ServletContext JavaDoc getServletContext();
15
16 }
17
Popular Tags