Class HttpSession


  • public abstract class HttpSession
    extends Object
    A session keeps track of a single client across multiple exchanges. This is typically used for login persistence.
    Since:
    02.00.00
    Version:
    03.04.01
    Author:
    Ktt Development
    • Method Detail

      • getSessionID

        public abstract String getSessionID()
        Returns the session id.
        Returns:
        session id
        Since:
        02.00.00
      • getCreationTime

        public abstract long getCreationTime()
        Returns when the session was created.
        Returns:
        creation time
        Since:
        02.00.00
      • getLastAccessTime

        public abstract long getLastAccessTime()
        Returns when the session was last used.
        Returns:
        last access time
        Since:
        02.00.00
      • updateLastAccessTime

        public abstract void updateLastAccessTime()
        Updates the last access time for the session
        Since:
        02.00.00