All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface javax.servlet.http.HttpSessionContext

public interface HttpSessionContext
Contains information shared by all the HttpSessions.

Version:
Servlet API 2.0
See Also:
HttpSessionContext

Method Index

 o getIds()
Get all sessions ids.
 o getSession(String)
Get the session with the given id.

Methods

 o getSession
 public abstract HttpSession getSession(String id)
Get the session with the given id.

Parameters:
id - the id of the HttpSession we're looking for.
Returns:
The HttpSession we're looking for, null if not present.
 o getIds
 public abstract Enumeration getIds()
Get all sessions ids.

Returns:
an Enumeration containing all session id's.

All Packages  Class Hierarchy  This Package  Previous  Next  Index