Class PageTesterSession

    • Method Detail

      • getAttributeNames

        public List<StringgetAttributeNames​(String prefix)
        Description copied from interface: Session
        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.
        Specified by:
        getAttributeNames in interface Session
      • setAttribute

        public void setAttribute​(String name,
                                 Object value)
        Description copied from interface: Session
        Sets the value of an attribute. If the value is null, then the attribute is deleted.
        Specified by:
        setAttribute in interface Session
      • getMaxInactiveInterval

        public int getMaxInactiveInterval()
        Description copied from interface: Session
        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.
        Specified by:
        getMaxInactiveInterval in interface Session
      • invalidate

        public void invalidate()
        Description copied from interface: Session
        Invalidates this session then unbinds any objects bound to it.
        Specified by:
        invalidate in interface Session
      • setMaxInactiveInterval

        public void setMaxInactiveInterval​(int seconds)
        Description copied from interface: Session
        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.
        Specified by:
        setMaxInactiveInterval in interface Session