Class DummyProxySession

java.lang.Object
org.apache.catalina.manager.DummyProxySession
All Implemented Interfaces:
Session

public class DummyProxySession extends Object implements Session
A dummy proxy session used for testing purposes.
  • Field Summary

  • Constructor Summary

    Constructors
    Constructor
    Description
    Construct a DummyProxySession with the given session ID.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Update the accessed time information for this session.
    void
    Add a session event listener to this component.
    void
    End access to the session.
    void
    Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.
    Returns the authentication type used to authenticate the cached Principal, if any.
    long
    Returns the creation time for this session.
    long
    Returns the creation time for this session, bypassing the session validity checks.
    Returns the session identifier for this session.
    Returns the session identifier for this session, bypassing validity checks.
    long
    Returns the idle time from last client access time.
    long
    Returns the idle time from last client access time without invalidation check.
    long
    Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT.
    long
    Returns the last client access time without invalidation check.
    Returns the Manager within which this Session is valid.
    int
    Returns the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session.
    Returns the object bound with the specified name to the internal notes for this session, or null if no such binding exists.
    Returns an Iterator containing the String names of all notes bindings that exist for this session.
    Returns the authenticated Principal that is associated with this Session.
    Returns the HttpSession for which this object is the facade.
    long
    Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT.
    long
    Returns the last client access time without invalidation check.
    boolean
    Does the session implementation support the distributing of the given attribute?
    boolean
    Returns whether the session is still valid.
    void
    Release all object references, and initialize instance variables, in preparation for reuse of this object.
    void
    Remove any object bound to the specified name in the internal notes for this session.
    void
    Remove a session event listener from this component.
    void
    setAuthType(String authType)
    Set the authentication type used to authenticate our cached Principal, if any.
    void
    setCreationTime(long time)
    Set the creation time for this session.
    void
    Set the session identifier for this session and notifies any associated listeners that a new session has been created.
    void
    setId(String id, boolean notify)
    Set the session identifier for this session and optionally notifies any associated listeners that a new session has been created.
    void
    Set the Manager within which this Session is valid.
    void
    setMaxInactiveInterval(int interval)
    Set the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session.
    void
    setNew(boolean isNew)
    Set the isNew flag for this session.
    void
    setNote(String name, Object value)
    Bind an object to a specified name in the internal notes associated with this session, replacing any existing binding for this name.
    void
    Set the authenticated Principal that is associated with this Session.
    void
    setValid(boolean isValid)
    Set the isValid flag for this session.
    void
    tellChangedSessionId(String newId, String oldId, boolean notifySessionListeners, boolean notifyContainerListeners)
    Inform the listeners about the change session ID.

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DummyProxySession

      public DummyProxySession(String sessionId)
      Construct a DummyProxySession with the given session ID.
      Parameters:
      sessionId - The session identifier
  • Method Details

    • access

      public void access()
      Description copied from interface: Session
      Update the accessed time information for this session. This method should be called by the context when a request comes in for a particular session, even if the application does not reference it.
      Specified by:
      access in interface Session
    • addSessionListener

      public void addSessionListener(SessionListener listener)
      Description copied from interface: Session
      Add a session event listener to this component.
      Specified by:
      addSessionListener in interface Session
      Parameters:
      listener - the SessionListener instance that should be notified for session events
    • endAccess

      public void endAccess()
      Description copied from interface: Session
      End access to the session.
      Specified by:
      endAccess in interface Session
    • expire

      public void expire()
      Description copied from interface: Session
      Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.
      Specified by:
      expire in interface Session
    • getAuthType

      public String getAuthType()
      Description copied from interface: Session
      Returns the authentication type used to authenticate the cached Principal, if any.
      Specified by:
      getAuthType in interface Session
      Returns:
      the authentication type
    • getCreationTime

      public long getCreationTime()
      Description copied from interface: Session
      Returns the creation time for this session.
      Specified by:
      getCreationTime in interface Session
      Returns:
      the creation time in milliseconds since midnight, January 1, 1970 GMT
    • getCreationTimeInternal

      public long getCreationTimeInternal()
      Description copied from interface: Session
      Returns the creation time for this session, bypassing the session validity checks.
      Specified by:
      getCreationTimeInternal in interface Session
      Returns:
      the creation time in milliseconds since midnight, January 1, 1970 GMT
    • getId

      public String getId()
      Description copied from interface: Session
      Returns the session identifier for this session.
      Specified by:
      getId in interface Session
      Returns:
      the session identifier
    • getIdInternal

      public String getIdInternal()
      Description copied from interface: Session
      Returns the session identifier for this session, bypassing validity checks.
      Specified by:
      getIdInternal in interface Session
      Returns:
      the session identifier
    • getLastAccessedTime

      public long getLastAccessedTime()
      Description copied from interface: Session
      Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT. Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time. This one gets updated whenever a request finishes.
      Specified by:
      getLastAccessedTime in interface Session
      Returns:
      the last access time in milliseconds
    • getLastAccessedTimeInternal

      public long getLastAccessedTimeInternal()
      Description copied from interface: Session
      Returns the last client access time without invalidation check.
      Specified by:
      getLastAccessedTimeInternal in interface Session
      Returns:
      the last access time in milliseconds
      See Also:
    • getIdleTime

      public long getIdleTime()
      Description copied from interface: Session
      Returns the idle time from last client access time.
      Specified by:
      getIdleTime in interface Session
      Returns:
      the idle time in milliseconds
    • getIdleTimeInternal

      public long getIdleTimeInternal()
      Description copied from interface: Session
      Returns the idle time from last client access time without invalidation check.
      Specified by:
      getIdleTimeInternal in interface Session
      Returns:
      the idle time in milliseconds
      See Also:
    • getManager

      public Manager getManager()
      Description copied from interface: Session
      Returns the Manager within which this Session is valid.
      Specified by:
      getManager in interface Session
      Returns:
      the manager
    • getMaxInactiveInterval

      public int getMaxInactiveInterval()
      Description copied from interface: Session
      Returns the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session. A negative time indicates that the session should never time out.
      Specified by:
      getMaxInactiveInterval in interface Session
      Returns:
      the maximum inactive interval in seconds
    • getNote

      public Object getNote(String name)
      Description copied from interface: Session
      Returns the object bound with the specified name to the internal notes for this session, or null if no such binding exists.
      Specified by:
      getNote in interface Session
      Parameters:
      name - Name of the note to be returned
      Returns:
      the note object, or null if not found
    • getNoteNames

      public Iterator<String> getNoteNames()
      Description copied from interface: Session
      Returns an Iterator containing the String names of all notes bindings that exist for this session.
      Specified by:
      getNoteNames in interface Session
      Returns:
      the iterator of note names
    • getPrincipal

      public Principal getPrincipal()
      Description copied from interface: Session
      Returns the authenticated Principal that is associated with this Session. This provides an Authenticator with a means to cache a previously authenticated Principal, and avoid potentially expensive Realm.authenticate() calls on every request. If there is no current associated Principal, return null.
      Specified by:
      getPrincipal in interface Session
      Returns:
      the authenticated principal, or null if none
    • getSession

      public HttpSession getSession()
      Description copied from interface: Session
      Returns the HttpSession for which this object is the facade.
      Specified by:
      getSession in interface Session
      Returns:
      the HTTP session
    • getThisAccessedTime

      public long getThisAccessedTime()
      Description copied from interface: Session
      Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT. Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time. This one gets updated whenever a request starts.
      Specified by:
      getThisAccessedTime in interface Session
      Returns:
      the last access time in milliseconds
    • getThisAccessedTimeInternal

      public long getThisAccessedTimeInternal()
      Description copied from interface: Session
      Returns the last client access time without invalidation check.
      Specified by:
      getThisAccessedTimeInternal in interface Session
      Returns:
      the last access time in milliseconds
      See Also:
    • isValid

      public boolean isValid()
      Description copied from interface: Session
      Returns whether the session is still valid.
      Specified by:
      isValid in interface Session
      Returns:
      true if the session is valid
    • recycle

      public void recycle()
      Description copied from interface: Session
      Release all object references, and initialize instance variables, in preparation for reuse of this object.
      Specified by:
      recycle in interface Session
    • removeNote

      public void removeNote(String name)
      Description copied from interface: Session
      Remove any object bound to the specified name in the internal notes for this session.
      Specified by:
      removeNote in interface Session
      Parameters:
      name - Name of the note to be removed
    • removeSessionListener

      public void removeSessionListener(SessionListener listener)
      Description copied from interface: Session
      Remove a session event listener from this component.
      Specified by:
      removeSessionListener in interface Session
      Parameters:
      listener - remove the session listener, which will no longer be notified
    • setAuthType

      public void setAuthType(String authType)
      Description copied from interface: Session
      Set the authentication type used to authenticate our cached Principal, if any.
      Specified by:
      setAuthType in interface Session
      Parameters:
      authType - The new cached authentication type
    • setCreationTime

      public void setCreationTime(long time)
      Description copied from interface: Session
      Set the creation time for this session. This method is called by the Manager when an existing Session instance is reused.
      Specified by:
      setCreationTime in interface Session
      Parameters:
      time - The new creation time
    • setId

      public void setId(String id)
      Description copied from interface: Session
      Set the session identifier for this session and notifies any associated listeners that a new session has been created.
      Specified by:
      setId in interface Session
      Parameters:
      id - The new session identifier
    • setId

      public void setId(String id, boolean notify)
      Description copied from interface: Session
      Set the session identifier for this session and optionally notifies any associated listeners that a new session has been created.
      Specified by:
      setId in interface Session
      Parameters:
      id - The new session identifier
      notify - Should any associated listeners be notified that a new session has been created?
    • setManager

      public void setManager(Manager manager)
      Description copied from interface: Session
      Set the Manager within which this Session is valid.
      Specified by:
      setManager in interface Session
      Parameters:
      manager - The new Manager
    • setMaxInactiveInterval

      public void setMaxInactiveInterval(int interval)
      Description copied from interface: Session
      Set the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session. A negative time indicates that the session should never time out.
      Specified by:
      setMaxInactiveInterval in interface Session
      Parameters:
      interval - The new maximum interval
    • setNew

      public void setNew(boolean isNew)
      Description copied from interface: Session
      Set the isNew flag for this session.
      Specified by:
      setNew in interface Session
      Parameters:
      isNew - The new value for the isNew flag
    • setNote

      public void setNote(String name, Object value)
      Description copied from interface: Session
      Bind an object to a specified name in the internal notes associated with this session, replacing any existing binding for this name.
      Specified by:
      setNote in interface Session
      Parameters:
      name - Name to which the object should be bound
      value - Object to be bound to the specified name
    • setPrincipal

      public void setPrincipal(Principal principal)
      Description copied from interface: Session
      Set the authenticated Principal that is associated with this Session. This provides an Authenticator with a means to cache a previously authenticated Principal, and avoid potentially expensive Realm.authenticate() calls on every request.
      Specified by:
      setPrincipal in interface Session
      Parameters:
      principal - The new Principal, or null if none
    • setValid

      public void setValid(boolean isValid)
      Description copied from interface: Session
      Set the isValid flag for this session.
      Specified by:
      setValid in interface Session
      Parameters:
      isValid - The new value for the isValid flag
    • tellChangedSessionId

      public void tellChangedSessionId(String newId, String oldId, boolean notifySessionListeners, boolean notifyContainerListeners)
      Description copied from interface: Session
      Inform the listeners about the change session ID.
      Specified by:
      tellChangedSessionId in interface Session
      Parameters:
      newId - new session ID
      oldId - old session ID
      notifySessionListeners - Should any associated sessionListeners be notified that session ID has been changed?
      notifyContainerListeners - Should any associated ContainerListeners be notified that session ID has been changed?
    • isAttributeDistributable

      public boolean isAttributeDistributable(String name, Object value)
      Description copied from interface: Session
      Does the session implementation support the distributing of the given attribute? If the Manager is marked as distributable, then this method must be used to check attributes before adding them to a session and an IllegalArgumentException thrown if the proposed attribute is not distributable.

      Note that the Manager implementation may further restrict which attributes are distributed but a Manager level restriction should not trigger an IllegalArgumentException in HttpSession.setAttribute(String, Object)

      Specified by:
      isAttributeDistributable in interface Session
      Parameters:
      name - The attribute name
      value - The attribute value
      Returns:
      true if distribution is supported, otherwise false