1
|
|
/* Generated by AspectJ version 1.0.5 */
|
2
|
|
package org.apache.cactus.server;
|
3
|
|
import org.apache.commons.logging.Log;
|
4
|
|
import org.apache.commons.logging.LogFactory;
|
5
|
|
import javax.servlet.ServletException;
|
6
|
|
|
7
|
|
/**
|
8
|
|
* Extension of the <code>jspRedirector.jsp</code> JSP Redirector in the java
|
9
|
|
* realmn in order to provide a symmetry with the <code>ServletRedirector</code>
|
10
|
|
* and minimize the amount of java code in <code>jspRedirector.jsp</code>.
|
11
|
|
*
|
12
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
13
|
|
*
|
14
|
|
* @version $Id: JspTestRedirector.java,v 1.3 2002/07/22 12:26:04 vmassol Exp $
|
15
|
|
*/
|
16
|
|
public class JspTestRedirector {
|
17
|
|
/**
|
18
|
|
* The logger
|
19
|
|
*/
|
20
|
|
private static Log LOGGER;
|
21
|
|
/**
|
22
|
|
* Handles requests from the <code>jspRedirector.jsp</code> JSP Redirector.
|
23
|
|
* @param theObjects the implicit objects that will be passed to the test
|
24
|
|
* case
|
25
|
|
* @exception ServletException if an error occurs servicing the request
|
26
|
|
*/
|
27
|
36
|
public void doGet(JspImplicitObjects theObjects) throws ServletException {
|
28
|
36
|
JspTestRedirector.LOGGER.debug("------------- Start JSP service");
|
29
|
36
|
JspTestController controller = new JspTestController();
|
30
|
36
|
controller.handleRequest(theObjects);
|
31
|
|
}
|
32
|
|
|
33
|
|
/**
|
34
|
|
* Extension of the <code>jspRedirector.jsp</code> JSP Redirector in the java
|
35
|
|
* realmn in order to provide a symmetry with the <code>ServletRedirector</code>
|
36
|
|
* and minimize the amount of java code in <code>jspRedirector.jsp</code>.
|
37
|
|
*
|
38
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
39
|
|
*
|
40
|
|
* @version $Id: JspTestRedirector.java,v 1.3 2002/07/22 12:26:04 vmassol Exp $
|
41
|
|
*/
|
42
|
36
|
public JspTestRedirector() {
|
43
|
36
|
super();
|
44
|
|
}
|
45
|
|
/**
|
46
|
|
* Extension of the <code>jspRedirector.jsp</code> JSP Redirector in the java
|
47
|
|
* realmn in order to provide a symmetry with the <code>ServletRedirector</code>
|
48
|
|
* and minimize the amount of java code in <code>jspRedirector.jsp</code>.
|
49
|
|
*
|
50
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
51
|
|
*
|
52
|
|
* @version $Id: JspTestRedirector.java,v 1.3 2002/07/22 12:26:04 vmassol Exp $
|
53
|
|
*/
|
54
|
|
static {
|
55
|
|
/**
|
56
|
|
* The logger
|
57
|
|
*/
|
58
|
3
|
JspTestRedirector.LOGGER = LogFactory.getLog(JspTestRedirector.class);
|
59
|
|
}
|
60
|
|
|
61
|
|
}
|