1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package javax.servlet.http;
19
20 import java.util.Enumeration;
21
22 /**
23 *
24 * @author Various
25 * @version $Version$
26 *
27 * @deprecated As of Java(tm) Servlet API 2.1
28 * for security reasons, with no replacement.
29 * This interface will be removed in a future
30 * version of this API.
31 *
32 * @see HttpSession
33 * @see HttpSessionBindingEvent
34 * @see HttpSessionBindingListener
35 *
36 */
37
38
39 public interface HttpSessionContext {
40
41 /**
42 *
43 * @deprecated As of Java Servlet API 2.1 with
44 * no replacement. This method must
45 * return null and will be removed in
46 * a future version of this API.
47 *
48 */
49
50 public HttpSession getSession(String sessionId);
51
52
53
54
55 /**
56 *
57 * @deprecated As of Java Servlet API 2.1 with
58 * no replacement. This method must return
59 * an empty <code>Enumeration</code> and will be removed
60 * in a future version of this API.
61 *
62 */
63
64 public Enumeration getIds();
65 }
66
67
68
69
70