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
-
getIds()
- Get all sessions ids.
-
getSession(String)
- Get the session with the given id.
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.
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