Class JEESessionStore

java.lang.Object
org.pac4j.jee.context.session.JEESessionStore
All Implemented Interfaces:
org.pac4j.core.context.session.SessionStore

public class JEESessionStore extends Object implements org.pac4j.core.context.session.SessionStore
Store data in the JEE web session.
Since:
1.8.1
Author:
Jerome Leleu
  • Field Details

    • INSTANCE

      public static final JEESessionStore INSTANCE
    • httpSession

      protected jakarta.servlet.http.HttpSession httpSession
  • Constructor Details

    • JEESessionStore

      protected JEESessionStore()
    • JEESessionStore

      protected JEESessionStore(jakarta.servlet.http.HttpSession httpSession)
  • Method Details

    • getNativeSession

      protected Optional<jakarta.servlet.http.HttpSession> getNativeSession(org.pac4j.core.context.WebContext context, boolean createSession)
    • getSessionId

      public Optional<String> getSessionId(org.pac4j.core.context.WebContext context, boolean createSession)
      Specified by:
      getSessionId in interface org.pac4j.core.context.session.SessionStore
    • get

      public Optional<Object> get(org.pac4j.core.context.WebContext context, String key)
      Specified by:
      get in interface org.pac4j.core.context.session.SessionStore
    • set

      public void set(org.pac4j.core.context.WebContext context, String key, Object value)
      Specified by:
      set in interface org.pac4j.core.context.session.SessionStore
    • destroySession

      public boolean destroySession(org.pac4j.core.context.WebContext context)
      Specified by:
      destroySession in interface org.pac4j.core.context.session.SessionStore
    • getTrackableSession

      public Optional<Object> getTrackableSession(org.pac4j.core.context.WebContext context)
      Specified by:
      getTrackableSession in interface org.pac4j.core.context.session.SessionStore
    • buildFromTrackableSession

      public Optional<org.pac4j.core.context.session.SessionStore> buildFromTrackableSession(org.pac4j.core.context.WebContext context, Object trackableSession)
      Specified by:
      buildFromTrackableSession in interface org.pac4j.core.context.session.SessionStore
    • renewSession

      public boolean renewSession(org.pac4j.core.context.WebContext context)
      Specified by:
      renewSession in interface org.pac4j.core.context.session.SessionStore