Package javax.servlet.http
Interface HttpSessionContext
-
@Deprecated public interface HttpSessionContext
Deprecated.As of Java(tm) Servlet API 2.1 for security reasons, with no replacement. This interface will be removed in a future version of this API.- Author:
- Various
- See Also:
HttpSession
,HttpSessionBindingEvent
,HttpSessionBindingListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Enumeration<String>
getIds()
Deprecated.As of Java Servlet API 2.1 with no replacement.HttpSession
getSession(String sessionId)
Deprecated.As of Java Servlet API 2.1 with no replacement.
-
-
-
Method Detail
-
getSession
@Deprecated HttpSession getSession(String sessionId)
Deprecated.As of Java Servlet API 2.1 with no replacement. This method must return null and will be removed in a future version of this API.- Parameters:
sessionId
- the id of the session to be returned- Returns:
- null in all cases
-
getIds
@Deprecated Enumeration<String> getIds()
Deprecated.As of Java Servlet API 2.1 with no replacement. This method must return an emptyEnumeration
and will be removed in a future version of this API.- Returns:
- null
-
-