インタフェース
javax.servlet.http.HttpSession の使用

HttpSession を使用しているパッケージ
javax.servlet.http   
javax.servlet.jsp   
 

javax.servlet.http での HttpSession の使用
 

HttpSession を返す javax.servlet.http のメソッド
 HttpSession HttpSessionEvent.getSession()
          Return the session that changed.
 HttpSession HttpSessionContext.getSession(java.lang.String sessionId)
          推奨されていません。 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.
 HttpSession HttpSessionBindingEvent.getSession()
          Return the session that changed.
 HttpSession HttpServletRequestWrapper.getSession(boolean create)
          The default behavior of this method is to return getSession(boolean create) on the wrapped request object.
 HttpSession HttpServletRequestWrapper.getSession()
          The default behavior of this method is to return getSession() on the wrapped request object.
 HttpSession HttpServletRequest.getSession(boolean create)
          Returns the current HttpSession associated with this request or, if if there is no current session and create is true, returns a new session.
 HttpSession HttpServletRequest.getSession()
          Returns the current session associated with this request, or if the request does not have a session, creates one.
 

HttpSession 型のパラメータを持つ javax.servlet.http のコンストラクタ
HttpSessionEvent(HttpSession source)
          Construct a session event from the given source.
HttpSessionBindingEvent(HttpSession session, java.lang.String name)
          Constructs an event that notifies an object that it has been bound to or unbound from a session.
HttpSessionBindingEvent(HttpSession session, java.lang.String name, java.lang.Object value)
          Constructs an event that notifies an object that it has been bound to or unbound from a session.
 

javax.servlet.jsp での HttpSession の使用
 

HttpSession を返す javax.servlet.jsp のメソッド
abstract  HttpSession PageContext.getSession()
          The current value of the session object (an HttpSession).
 



Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.