Interface Session

    • Method Detail

      • getAttributeNames

        List<StringgetAttributeNames()
        Returns a list of the names of all attributes stored in the session. The names are returned sorted alphabetically.
      • getAttributeNames

        List<StringgetAttributeNames​(String prefix)
        Returns a list of the names of all attributes stored in the session whose name has the provided prefix. The names are returned in alphabetical order.
      • setAttribute

        void setAttribute​(String name,
                          Object value)
        Sets the value of an attribute. If the value is null, then the attribute is deleted.
      • getMaxInactiveInterval

        int getMaxInactiveInterval()
        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.
      • setMaxInactiveInterval

        void setMaxInactiveInterval​(int seconds)
        Specifies the time, in seconds, between client requests before the servlet container will invalidate this session. A negative time indicates the session should never timeout.
      • invalidate

        void invalidate()
        Invalidates this session then unbinds any objects bound to it.
        Throws:
        IllegalStateException - if this method is called on an already invalidated session
      • restoreDirtyObjects

        void restoreDirtyObjects()
        Re-stores dirty objects back into the session. This is necessary to support clustering, because (in most application servers) session objects are only broadcast around the cluster from setAttribute(). If a mutable session object is read and changed, those changes will be limited to a single server in the cluster, which can cause confusing application failures in the event of a failover. Does nothing if there are no changes, or the session has been invalidated.
        Since:
        5.1.0.0
        See Also:
        OptimizedSessionPersistedObject, OptimizedSessionPersistedObjectAnalyzer, ImmutableSessionPersistedObject