パッケージ org.wcardinal.io

クラス Session

java.lang.Object
org.wcardinal.io.Session
すべての実装されたインタフェース:
Serializable, Runnable

public class Session extends Object implements Serializable, Runnable
Central class of sessions.
関連項目:
  • コンストラクタの詳細

  • メソッドの詳細

    • toString

      public String toString()
      オーバーライド:
      toString クラス内 Object
    • createSubSession

      public SessionResult createSubSession(ControllerFactory factory, String remoteAddress, Principal principal, Map<String,String[]> parameters, List<Locale> locales, jakarta.servlet.http.HttpServletRequest request)
    • getSubSession

      public SubSession getSubSession(String subSessionId)
    • getSubSessions

      public List<SubSession> getSubSessions()
    • getId

      public String getId()
    • getSubSession

      public SessionResult getSubSession(ControllerFactory factory, String subSessionId, String remoteAddress, boolean create, Principal principal, Map<String,String[]> parameters, List<Locale> locales, jakarta.servlet.http.HttpServletRequest request)
    • get

      public static Session get(org.springframework.web.socket.WebSocketSession webSocketSession)
    • set

      public static void set(Session session, Map<String,Object> attributes)
    • get

      public static Session get(jakarta.servlet.http.HttpSession httpSession, org.springframework.context.ApplicationContext context, WCardinalConfiguration configuration, Scheduler scheduler, boolean create)
    • get

      public static Session get(jakarta.servlet.http.HttpSession httpSession)
    • remove

      @ThreadSafe public static Session remove(String httpSessionId)
      Removes the session associated with the specified HTTP session ID.
      パラメータ:
      httpSessionId - HTTP session ID of HTTP session associated with the session to be removed
      戻り値:
      removed session or null if not exists
    • destroy

      @ThreadSafe public void destroy()
      Destroys this session.
    • cleanup

      @ThreadSafe public void cleanup()
      Finds destroyed sub sessions and removes them from this session.
    • isDestroyed

      @ThreadSafe public boolean isDestroyed()
      Returns true if this session is destroyed.
      戻り値:
      true if destroyed
    • run

      public void run()
      定義:
      run インタフェース内 Runnable