1
|
|
/* Generated by AspectJ version 1.0.5 */
|
2
|
|
package org.apache.cactus.server;
|
3
|
|
import javax.servlet.ServletContext;
|
4
|
|
import javax.servlet.http.HttpServletResponse;
|
5
|
|
import javax.servlet.http.HttpServletRequest;
|
6
|
|
|
7
|
|
/**
|
8
|
|
* Interface for implicit objects that exist
|
9
|
|
* for all web requests (<code>HttpServletRequest</code>,
|
10
|
|
* <code>HttpServletResponse</code> and <code>ServletContext</code>).
|
11
|
|
*
|
12
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
13
|
|
*
|
14
|
|
* @version $Id: WebImplicitObjects.html,v 1.1 2003/04/14 12:27:33 sinisa Exp $
|
15
|
|
*/
|
16
|
|
public interface WebImplicitObjects extends ImplicitObjects {
|
17
|
|
/**
|
18
|
|
* @return the <code>ServletContext</code> implicit object
|
19
|
|
*/
|
20
|
|
ServletContext getServletContext();
|
21
|
|
|
22
|
|
/**
|
23
|
|
* @param theContext the <code>ServletContext</code> implicit object
|
24
|
|
*/
|
25
|
|
void setServletContext(ServletContext theContext);
|
26
|
|
|
27
|
|
/**
|
28
|
|
* @return the <code>HttpServletResponse</code> implicit object
|
29
|
|
*/
|
30
|
|
HttpServletResponse getHttpServletResponse();
|
31
|
|
|
32
|
|
/**
|
33
|
|
* @param theResponse the <code>HttpServletResponse</code> implicit object
|
34
|
|
*/
|
35
|
|
void setHttpServletResponse(HttpServletResponse theResponse);
|
36
|
|
|
37
|
|
/**
|
38
|
|
* @return the <code>HttpServletRequest</code> implicit object
|
39
|
|
*/
|
40
|
|
HttpServletRequest getHttpServletRequest();
|
41
|
|
|
42
|
|
/**
|
43
|
|
* @param theRequest the <code>HttpServletRequest</code> implicit object
|
44
|
|
*/
|
45
|
|
void setHttpServletRequest(HttpServletRequest theRequest);
|
46
|
|
}
|