org.mortbay.http.handler

Class ErrorPageHandler

Implemented Interfaces:
HttpHandler, LifeCycle, Serializable

public class ErrorPageHandler
extends AbstractHttpHandler

Handler for Error pages A handler that is registered at the org.mortbay.http.ErrorHandler context attributed and called by the HttpResponse.sendError method to write a error page.
Version:
$Id: ErrorPageHandler.java,v 1.9 2005/03/15 10:03:44 gregwilkins Exp $
Author:
Greg Wilkins (gregw)

Method Summary

void
handle(String pathInContext, String pathParams, HttpRequest request, HttpResponse response)
Handle a request.
protected void
writeErrorPage(HttpRequest request, Writer writer, int code, String message)

Methods inherited from class org.mortbay.http.handler.AbstractHttpHandler

getHttpContext, getName, handleTrace, initialize, isStarted, setName, start, stop, toString

Method Details

handle

public void handle(String pathInContext,
                   String pathParams,
                   HttpRequest request,
                   HttpResponse response)
            throws HttpException,
                   IOException
Handle a request. Note that Handlers are tried in order until one has handled the request. i.e. until request.isHandled() returns true. In broad terms this means, either a response has been commited or request.setHandled(true) has been called.
Specified by:
handle in interface HttpHandler
Parameters:
pathInContext - The context path
pathParams - Path parameters such as encoded Session ID
request - The HttpRequest request
response - The HttpResponse response

writeErrorPage

protected void writeErrorPage(HttpRequest request,
                              Writer writer,
                              int code,
                              String message)
            throws IOException

Copyright © 2004 Mortbay Consulting Pty. Ltd. All Rights Reserved.