1
|
|
/* Generated by AspectJ version 1.0.5 */
|
2
|
|
package org.apache.cactus.server;
|
3
|
|
/**
|
4
|
|
* Filter Controller that extracts the requested service from the
|
5
|
|
* HTTP request and executes the request by calling a
|
6
|
|
* <code>FilterTestCaller</code>. There are 2 services available : one for
|
7
|
|
* executing the test and one for returning the test result.
|
8
|
|
*
|
9
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
10
|
|
*
|
11
|
|
* @version $Id: FilterTestController.html,v 1.1 2003/04/14 12:27:31 sinisa Exp $
|
12
|
|
*/
|
13
|
|
public class FilterTestController extends AbstractWebTestController {
|
14
|
|
/**
|
15
|
|
* @see AbstractWebTestController#getTestCaller(WebImplicitObjects)
|
16
|
|
*/
|
17
|
50
|
protected AbstractWebTestCaller getTestCaller(WebImplicitObjects theObjects) {
|
18
|
50
|
return new FilterTestCaller((FilterImplicitObjects)theObjects);
|
19
|
|
}
|
20
|
|
|
21
|
|
/**
|
22
|
|
* Filter Controller that extracts the requested service from the
|
23
|
|
* HTTP request and executes the request by calling a
|
24
|
|
* <code>FilterTestCaller</code>. There are 2 services available : one for
|
25
|
|
* executing the test and one for returning the test result.
|
26
|
|
*
|
27
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
28
|
|
*
|
29
|
|
* @version $Id: FilterTestController.html,v 1.1 2003/04/14 12:27:31 sinisa Exp $
|
30
|
|
*/
|
31
|
50
|
public FilterTestController() {
|
32
|
50
|
super();
|
33
|
|
}
|
34
|
|
}
|