org.apache.cactus.internal.server |
Contains the classes implementing the server side of Cactus.
|
Java Source File Name | Type | Comment |
AbstractWebImplicitObjects.java | Class | Holder class that contains the instances of the implicit objects that exist
for all web requests. |
AbstractWebTestCaller.java | Class | Responsible for instanciating the TestCase class on the server
side, set up the implicit objects and call the test method. |
AbstractWebTestController.java | Class | Controller that extracts the requested service from the HTTP request and
executes the request. |
FilterImplicitObjects.java | Class | Holder class that contains the instances of the implicit objects that will
be accessible in the test classes (ie subclasses of
FilterTestCase ). |
FilterTestCaller.java | Class | Responsible for instanciating the TestCase class on the server
side, set up the implicit objects and call the test method. |
FilterTestController.java | Class | Filter Controller that extracts the requested service from the
HTTP request and executes the request by calling a
FilterTestCaller . |
JspImplicitObjects.java | Class | Holder class that contains the instances of the implicit objects that will
be accessible in the test classes (ie subclasses of
JspTestCase ). |
JspTestCaller.java | Class | Call the test method on the server side after assigning the JSP implicit
objects using reflection. |
JspTestController.java | Class | JSP Controller that extracts the requested service from the
HTTP request and executes the request by calling a
JspTestCaller . |
ServerTestCaseCaller.java | Class | Provide the ability to execute Cactus test case classes on the server side. |
ServletImplicitObjects.java | Class | Holder class that contains the instances of the implicit objects that will
be accessible in the test classes (ie subclasses of
ServletTestCase ). |
ServletTestCaller.java | Class | Responsible for instanciating the TestCase class on the server
side, set up the implicit objects and call the test method. |
ServletTestController.java | Class | Servlet Controller that extracts the requested service from the
HTTP request and executes the request by calling a
ServletTestCaller . |
ServletUtil.java | Class | All prupose utility methods for manipulating the Servlet API. |
TestServletUtil.java | Class | Unit tests of the
ServletUtil class. |
WebImplicitObjects.java | Interface | Interface for implicit objects that exist
for all web requests (HttpServletRequest ,
HttpServletResponse and ServletContext ). |