Class SessionData

  • All Implemented Interfaces:
    Serializable

    @Deprecated(since="2021-05-27")
    public class SessionData
    extends Object
    implements Serializable
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    SessionData The data associated with a session. A Session object has a 1:1 relationship with a SessionData object. The behaviour of sessions is implemented in the Session object (eg calling listeners, keeping timers etc). A Session's associated SessionData is the object which can be persisted, serialized etc.
    See Also:
    Serialized Form
    • Constructor Detail

      • SessionData

        public SessionData​(String id,
                           String cpath,
                           String vhost,
                           long created,
                           long accessed,
                           long lastAccessed,
                           long maxInactiveMs)
        Deprecated.
      • SessionData

        public SessionData​(String id,
                           String cpath,
                           String vhost,
                           long created,
                           long accessed,
                           long lastAccessed,
                           long maxInactiveMs,
                           Map<String,​Object> attributes)
        Deprecated.
    • Method Detail

      • serializeAttributes

        public static void serializeAttributes​(SessionData data,
                                               ObjectOutputStream out)
                                        throws IOException
        Deprecated.
        Serialize the attribute map of the session. This special handling allows us to record which classloader should be used to load the value of the attribute: either the container classloader (which could be the application loader ie null, or jetty's startjar loader) or the webapp's classloader.
        Parameters:
        data - the SessionData for which to serialize the attributes
        out - the stream to which to serialize
        Throws:
        IOException
      • deserializeAttributes

        public static void deserializeAttributes​(SessionData data,
                                                 ObjectInputStream in)
                                          throws IOException,
                                                 ClassNotFoundException
        Deprecated.
        De-serialize the attribute map of a session. When the session was serialized, we will have recorded which classloader should be used to recover the attribute value. The classloader could be the container classloader, or the webapp classloader.
        Parameters:
        data - the SessionData for which to deserialize the attribute map
        in - the serialized stream
        Throws:
        IOException
        ClassNotFoundException
      • copy

        public void copy​(SessionData data)
        Deprecated.
        Copy the info from the given sessiondata
        Parameters:
        data - the sessiondata to be copied
      • getLastSaved

        public long getLastSaved()
        Deprecated.
        Returns:
        time at which session was last written out
      • setLastSaved

        public void setLastSaved​(long lastSaved)
        Deprecated.
      • isDirty

        public boolean isDirty()
        Deprecated.
        Returns:
        true if a session needs to be written out
      • setDirty

        public void setDirty​(boolean dirty)
        Deprecated.
      • isMetaDataDirty

        public boolean isMetaDataDirty()
        Deprecated.
        Returns:
        the metaDataDirty
      • setMetaDataDirty

        public void setMetaDataDirty​(boolean metaDataDirty)
        Deprecated.
        Parameters:
        metaDataDirty - true means non-attribute data has changed
      • getAttribute

        public Object getAttribute​(String name)
        Deprecated.
        Parameters:
        name - the name of the attribute
        Returns:
        the value of the attribute named
      • getKeys

        public Set<String> getKeys()
        Deprecated.
        Returns:
        a Set of attribute names
      • setDirty

        public void setDirty​(String name)
        Deprecated.
      • clean

        public void clean()
        Deprecated.
        Clear all dirty flags.
      • putAllAttributes

        public void putAllAttributes​(Map<String,​Object> attributes)
        Deprecated.
      • clearAllAttributes

        public void clearAllAttributes()
        Deprecated.
        Remove all attributes
      • getAllAttributes

        public Map<String,​Object> getAllAttributes()
        Deprecated.
        Returns:
        an unmodifiable map of the attributes
      • getId

        public String getId()
        Deprecated.
        Returns:
        the id of the session
      • setId

        public void setId​(String id)
        Deprecated.
      • getContextPath

        public String getContextPath()
        Deprecated.
        Returns:
        the context path associated with this session
      • setContextPath

        public void setContextPath​(String contextPath)
        Deprecated.
      • getVhost

        public String getVhost()
        Deprecated.
        Returns:
        virtual host of context associated with session
      • setVhost

        public void setVhost​(String vhost)
        Deprecated.
      • getLastNode

        public String getLastNode()
        Deprecated.
        Returns:
        last node to manage the session
      • setLastNode

        public void setLastNode​(String lastNode)
        Deprecated.
      • getExpiry

        public long getExpiry()
        Deprecated.
        Returns:
        time at which session expires
      • setExpiry

        public void setExpiry​(long expiry)
        Deprecated.
      • calcExpiry

        public long calcExpiry()
        Deprecated.
      • calcExpiry

        public long calcExpiry​(long time)
        Deprecated.
      • calcAndSetExpiry

        public void calcAndSetExpiry​(long time)
        Deprecated.
      • calcAndSetExpiry

        public void calcAndSetExpiry()
        Deprecated.
      • getCreated

        public long getCreated()
        Deprecated.
      • setCreated

        public void setCreated​(long created)
        Deprecated.
      • getCookieSet

        public long getCookieSet()
        Deprecated.
        Returns:
        time cookie was set
      • setCookieSet

        public void setCookieSet​(long cookieSet)
        Deprecated.
      • getAccessed

        public long getAccessed()
        Deprecated.
        Returns:
        time session was accessed
      • setAccessed

        public void setAccessed​(long accessed)
        Deprecated.
      • getLastAccessed

        public long getLastAccessed()
        Deprecated.
        Returns:
        previous time session was accessed
      • setLastAccessed

        public void setLastAccessed​(long lastAccessed)
        Deprecated.
      • getMaxInactiveMs

        public long getMaxInactiveMs()
        Deprecated.
      • setMaxInactiveMs

        public void setMaxInactiveMs​(long maxInactive)
        Deprecated.
      • isExpiredAt

        public boolean isExpiredAt​(long time)
        Deprecated.