Class EntityHttpServletRequest.EntityHttpSession

  • All Implemented Interfaces:
    javax.servlet.http.HttpSession
    Enclosing class:
    EntityHttpServletRequest

    public static class EntityHttpServletRequest.EntityHttpSession
    extends Object
    implements javax.servlet.http.HttpSession
    A fake session for testing, from the spring mock session
    • Constructor Detail

      • EntityHttpSession

        public EntityHttpSession()
        Create a new MockHttpSession with a default MockServletContext.
        See Also:
        MockServletContext
      • EntityHttpSession

        public EntityHttpSession​(javax.servlet.ServletContext servletContext)
        Create a new MockHttpSession.
        Parameters:
        servletContext - the ServletContext that the session runs in
      • EntityHttpSession

        public EntityHttpSession​(javax.servlet.ServletContext servletContext,
                                 String id)
        Create a new MockHttpSession.
        Parameters:
        servletContext - the ServletContext that the session runs in
        id - a unique identifier for this session
    • Method Detail

      • getCreationTime

        public long getCreationTime()
        Specified by:
        getCreationTime in interface javax.servlet.http.HttpSession
      • getId

        public String getId()
        Specified by:
        getId in interface javax.servlet.http.HttpSession
      • access

        public void access()
      • getLastAccessedTime

        public long getLastAccessedTime()
        Specified by:
        getLastAccessedTime in interface javax.servlet.http.HttpSession
      • getServletContext

        public javax.servlet.ServletContext getServletContext()
        Specified by:
        getServletContext in interface javax.servlet.http.HttpSession
      • setMaxInactiveInterval

        public void setMaxInactiveInterval​(int interval)
        Specified by:
        setMaxInactiveInterval in interface javax.servlet.http.HttpSession
      • getMaxInactiveInterval

        public int getMaxInactiveInterval()
        Specified by:
        getMaxInactiveInterval in interface javax.servlet.http.HttpSession
      • getSessionContext

        public javax.servlet.http.HttpSessionContext getSessionContext()
        Specified by:
        getSessionContext in interface javax.servlet.http.HttpSession
      • getAttribute

        public Object getAttribute​(String name)
        Specified by:
        getAttribute in interface javax.servlet.http.HttpSession
      • getValue

        public Object getValue​(String name)
        Specified by:
        getValue in interface javax.servlet.http.HttpSession
      • getAttributeNames

        public Enumeration getAttributeNames()
        Specified by:
        getAttributeNames in interface javax.servlet.http.HttpSession
      • getValueNames

        public String[] getValueNames()
        Specified by:
        getValueNames in interface javax.servlet.http.HttpSession
      • setAttribute

        public void setAttribute​(String name,
                                 Object value)
        Specified by:
        setAttribute in interface javax.servlet.http.HttpSession
      • putValue

        public void putValue​(String name,
                             Object value)
        Specified by:
        putValue in interface javax.servlet.http.HttpSession
      • removeAttribute

        public void removeAttribute​(String name)
        Specified by:
        removeAttribute in interface javax.servlet.http.HttpSession
      • removeValue

        public void removeValue​(String name)
        Specified by:
        removeValue in interface javax.servlet.http.HttpSession
      • clearAttributes

        public void clearAttributes()
        Clear all of this session's attributes.
      • invalidate

        public void invalidate()
        Specified by:
        invalidate in interface javax.servlet.http.HttpSession
      • isInvalid

        public boolean isInvalid()
      • setNew

        public void setNew​(boolean value)
      • isNew

        public boolean isNew()
        Specified by:
        isNew in interface javax.servlet.http.HttpSession
      • serializeState

        public Serializable serializeState()
        Serialize the attributes of this session into an object that can be turned into a byte array with standard Java serialization.
        Returns:
        a representation of this session's serialized state
      • deserializeState

        public void deserializeState​(Serializable state)
        Deserialize the attributes of this session from a state object created by serializeState().
        Parameters:
        state - a representation of this session's serialized state