Method Summary |
|
abstract public void | forward(String relativeUrl) Forwards the request relative to the current URL. |
abstract public Object | getAttribute(String name) Gets the named page attribute. |
abstract public Enumeration | getAttributeNames() Return an enumeration of all the attribute names. |
abstract public ErrorData | getErrorData() Returns an error data instance. |
abstract public Exception | getException() Returns the exception for error pages. |
abstract public JspWriter | getOut() Returns the current output for the page. |
abstract public Object | getPage() Return the servlet object for the page. |
abstract public ServletRequest | getRequest() Returns the ServletRequest for the page. |
abstract public ServletResponse | getResponse() Returns the ServletResponse for the page. |
abstract public ServletConfig | getServletConfig() Returns the servletConfig for the JSP page. |
abstract public ServletContext | getServletContext() Returns the servletContext (application object) for the request. |
abstract public HttpSession | getSession() Returns the request's session. |
abstract public void | handlePageException(Exception e) Internal routine to support errorPages. |
abstract public void | handlePageException(Throwable t) |
public void | include(String relativeUrl) Includes the a page relative to the current URL. |
abstract public void | include(String relativeUrl, boolean flush) Includes the a page relative to the current URL. |
abstract public void | initialize(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush) Internal routine to initialize the PageContext for a page. |
public BodyContent | pushBody() Internal routine to support BodyTags. |
abstract public void | release() Internal routine to free PageContext resources at the end of a page. |
abstract public void | removeAttribute(String name) Removes the named page attribute. |
abstract public void | setAttribute(String name, Object attribute) Sets the named page attribute. |