| java.lang.Object org.mmbase.util.PageInfo
PageInfo | public class PageInfo (Code) | | The PageInfo is a container class.
Needed for the ProcessorInterface.
since: MMBase 1.8 author: Pierre van Rooden version: $Id: PageInfo.java,v 1.3 2005/11/04 23:28:02 michiel Exp $ |
req | public HttpServletRequest req(Code) | | The request object associated with the current page.
Not a very good name - and should not be public, but needed for
backward compatibility witH SCAN
|
res | public HttpServletResponse res(Code) | | The response object associated with the current page.
Not a very good name - and should not be public, but needed for
backward compatibility witH SCAN
|
PageInfo | protected PageInfo()(Code) | | Empty constructor, needed for call from scanpage
|
PageInfo | public PageInfo(HttpServletRequest request, HttpServletResponse response, Cloud cloud)(Code) | | Creates a pagecontext with a user's request information.
Parameters: request - the HttpServletRequest object for this request Parameters: response - the HttpServletResponse object for this request |
getRequest | public HttpServletRequest getRequest()(Code) | | Returns the HttpServletRequest object for this request.
a HttpServletRequest object, or null if none is available |
getResponse | public HttpServletResponse getResponse()(Code) | | Returns the HttpServletResponse object for this request.
a HttpServletResponse object, or null if none is available |
setRequest | protected void setRequest(HttpServletRequest request)(Code) | | Sets the HttpServletRequest object for this request.
Parameters: request - a HttpServletRequest object, or null if none is available |
setResponse | protected void setResponse(HttpServletResponse response)(Code) | | Sets the HttpServletResponse object for this request.
Parameters: response - a HttpServletResponse object, or null if none is available |
|
|