Interface HttpSession

All Superinterfaces:
jakarta.servlet.http.HttpSession
All Known Implementing Classes:
HttpSession.Impl

public interface HttpSession extends jakarta.servlet.http.HttpSession
A temporary class used until all dependencies provide releases based on jakarta.** APIs
  • Method Details

    • getDelegate

      jakarta.servlet.http.HttpSession getDelegate()
    • getCreationTime

      default long getCreationTime()
      Specified by:
      getCreationTime in interface jakarta.servlet.http.HttpSession
    • getId

      default String getId()
      Specified by:
      getId in interface jakarta.servlet.http.HttpSession
    • getLastAccessedTime

      default long getLastAccessedTime()
      Specified by:
      getLastAccessedTime in interface jakarta.servlet.http.HttpSession
    • getServletContext

      default jakarta.servlet.ServletContext getServletContext()
      Specified by:
      getServletContext in interface jakarta.servlet.http.HttpSession
    • setMaxInactiveInterval

      default void setMaxInactiveInterval(int interval)
      Specified by:
      setMaxInactiveInterval in interface jakarta.servlet.http.HttpSession
    • getMaxInactiveInterval

      default int getMaxInactiveInterval()
      Specified by:
      getMaxInactiveInterval in interface jakarta.servlet.http.HttpSession
    • getAttribute

      default Object getAttribute(String name)
      Specified by:
      getAttribute in interface jakarta.servlet.http.HttpSession
    • getAttributeNames

      Specified by:
      getAttributeNames in interface jakarta.servlet.http.HttpSession
    • setAttribute

      default void setAttribute(String name, Object value)
      Specified by:
      setAttribute in interface jakarta.servlet.http.HttpSession
    • removeAttribute

      default void removeAttribute(String name)
      Specified by:
      removeAttribute in interface jakarta.servlet.http.HttpSession
    • invalidate

      default void invalidate()
      Specified by:
      invalidate in interface jakarta.servlet.http.HttpSession
    • isNew

      default boolean isNew()
      Specified by:
      isNew in interface jakarta.servlet.http.HttpSession