01: /*
02: * Copyright 2003-2006 Rick Knowles <winstone-devel at lists sourceforge net>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: */
07: package javax.servlet.http;
08:
09: /**
10: * Shared session context interface - deprecated
11: *
12: * @author <a href="mailto:rick_knowles@hotmail.com">Rick Knowles</a>
13: * @deprecated
14: */
15: public abstract interface HttpSessionContext {
16: /**
17: * @deprecated
18: */
19: public abstract java.util.Enumeration getIds();
20:
21: /**
22: * @deprecated
23: */
24: public abstract HttpSession getSession(String sessionId);
25:
26: }
|