Class TowSessionAdapter

    • Constructor Summary

      Constructors 
      Constructor Description
      TowSessionAdapter​(io.undertow.server.HttpServerExchange exchange)
      Instantiates a new TowSessionAdapter.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T> T getAdaptee()
      Returns the adaptee object to provide session information.
      <T> T getAttribute​(java.lang.String name)
      Returns the value of the named attribute as a given type, or null if no attribute of the given name exists.
      java.util.Enumeration<java.lang.String> getAttributeNames()
      Returns an Enumeration of String objects containing the names of all the objects bound to this session.
      long getCreationTime()
      Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.
      java.lang.String getId()
      Returns a string containing the unique identifier assigned to this session.
      long getLastAccessedTime()
      Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT, and marked by the time the container received the request.
      int getMaxInactiveInterval()
      Returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses.
      io.undertow.server.session.Session getSession​(boolean create)  
      void invalidate()
      Invalidates this session then unbinds any objects bound to it.
      boolean isNew()
      Returns true if a new session was created for this request.
      protected SessionScope newSessionScope()  
      void removeAttribute​(java.lang.String name)
      Removes the object bound with the specified name from this session.
      void setAttribute​(java.lang.String name, java.lang.Object value)
      Stores an attribute in this session.
      void setMaxInactiveInterval​(int interval)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • TowSessionAdapter

        public TowSessionAdapter​(io.undertow.server.HttpServerExchange exchange)
        Instantiates a new TowSessionAdapter.
    • Method Detail

      • getId

        public java.lang.String getId()
        Description copied from interface: SessionAdapter
        Returns a string containing the unique identifier assigned to this session. The identifier is assigned by the servlet container and is implementation dependent.
        Returns:
        a string specifying the identifier assigned to this session
      • getCreationTime

        public long getCreationTime()
        Description copied from interface: SessionAdapter
        Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.
        Returns:
        a long specifying when this session was created, expressed in milliseconds since 1/1/1970 GMT
      • getLastAccessedTime

        public long getLastAccessedTime()
        Description copied from interface: SessionAdapter
        Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT, and marked by the time the container received the request. Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time.
        Returns:
        a long representing the last time the client sent a request associated with this session, expressed in milliseconds since 1/1/1970 GMT
      • getMaxInactiveInterval

        public int getMaxInactiveInterval()
        Description copied from interface: SessionAdapter
        Returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses. After this interval, the servlet container will invalidate the session. The maximum time interval can be set with the setMaxInactiveInterval method. A negative time indicates the session should never timeout.
        Returns:
        an integer specifying the number of seconds this session remains open between client requests
      • setMaxInactiveInterval

        public void setMaxInactiveInterval​(int interval)
      • getAttributeNames

        public java.util.Enumeration<java.lang.String> getAttributeNames()
        Description copied from interface: SessionAdapter
        Returns an Enumeration of String objects containing the names of all the objects bound to this session.
        Returns:
        an Enumeration of String objects specifying the names of all the objects bound to this session
      • getAttribute

        public <T> T getAttribute​(java.lang.String name)
        Description copied from interface: SessionAdapter
        Returns the value of the named attribute as a given type, or null if no attribute of the given name exists.
        Type Parameters:
        T - the generic type
        Parameters:
        name - a String specifying the name of the attribute
        Returns:
        an Object containing the value of the attribute, or null if the attribute does not exist
      • setAttribute

        public void setAttribute​(java.lang.String name,
                                 java.lang.Object value)
        Description copied from interface: SessionAdapter
        Stores an attribute in this session.
        Parameters:
        name - specifying the name of the attribute
        value - the Object to be stored
      • removeAttribute

        public void removeAttribute​(java.lang.String name)
        Description copied from interface: SessionAdapter
        Removes the object bound with the specified name from this session. If the session does not have an object bound with the specified name, this method does nothing.
        Parameters:
        name - the name of the object to remove from this session
      • invalidate

        public void invalidate()
        Description copied from interface: SessionAdapter
        Invalidates this session then unbinds any objects bound to it.
      • isNew

        public boolean isNew()
        Description copied from interface: SessionAdapter
        Returns true if a new session was created for this request.
        Returns:
        true if the server has created a session, but the client has not yet joined
      • getSession

        public io.undertow.server.session.Session getSession​(boolean create)