org.apache.cactus.server
Interface WebImplicitObjects
- All Known Implementing Classes:
- AbstractWebImplicitObjects
- public interface WebImplicitObjects
Interface for implicit objects that exist
for all web requests (HttpServletRequest
,
HttpServletResponse
and ServletContext
).
- Version:
- $Id: WebImplicitObjects.java,v 1.2 2002/03/10 13:58:25 vmassol Exp $
- Author:
- Vincent Massol
Constructor Summary |
WebImplicitObjects()
Interface for implicit objects that exist
for all web requests (HttpServletRequest ,
HttpServletResponse and ServletContext ). |
WebImplicitObjects
public WebImplicitObjects()
- Interface for implicit objects that exist
for all web requests (
HttpServletRequest
,
HttpServletResponse
and ServletContext
).
getHttpServletRequest
public HttpServletRequest getHttpServletRequest()
- Returns:
- the
HttpServletRequest
implicit object
getHttpServletResponse
public HttpServletResponse getHttpServletResponse()
- Returns:
- the
HttpServletResponse
implicit object
getServletContext
public ServletContext getServletContext()
- Returns:
- the
ServletContext
implicit object
setHttpServletRequest
public void setHttpServletRequest(HttpServletRequest theRequest)
- Parameters:
theRequest
- the HttpServletRequest
implicit object
setHttpServletResponse
public void setHttpServletResponse(HttpServletResponse theResponse)
- Parameters:
theResponse
- the HttpServletResponse
implicit object
setServletContext
public void setServletContext(ServletContext theContext)
- Parameters:
theContext
- the ServletContext
implicit object
Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.