org.apache.commons.cactus.server
Class ServletImplicitObjects

java.lang.Object
  |
  +--org.apache.commons.cactus.server.ServletImplicitObjects
Direct Known Subclasses:
JspImplicitObjects

public class ServletImplicitObjects
extends java.lang.Object

Holder class that contains the instances of the implicit objects that will be accessible in the test classes (i.e. subclasses of ServletTestCase).

Version:
1.0

Field Summary
 javax.servlet.ServletConfig m_Config
          The Servlet configuration object.
 javax.servlet.http.HttpServletRequest m_Request
          The HTTP request wrapper.
 javax.servlet.http.HttpServletResponse m_Response
          The original HTTP response object that is created by the servlet container.
 javax.servlet.http.HttpSession m_Session
          The HTTP session object.
 
Constructor Summary
ServletImplicitObjects()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_Request

public javax.servlet.http.HttpServletRequest m_Request
The HTTP request wrapper.

m_Response

public javax.servlet.http.HttpServletResponse m_Response
The original HTTP response object that is created by the servlet container.

m_Session

public javax.servlet.http.HttpSession m_Session
The HTTP session object. Can be null if no automatic session creation has been asked by the user.

m_Config

public javax.servlet.ServletConfig m_Config
The Servlet configuration object.
Constructor Detail

ServletImplicitObjects

public ServletImplicitObjects()


Copyright © 2000-2001 Apache Software Foundation. All Rights Reserved.