All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface w3c.www.protocol.http.RequestProcessor

public interface RequestProcessor
Request processor interface. Request processors are object whose invocation is done prior to any request launching, and who have the opportunity to answer to the request before it actually goes out to the target server.

Typicall request processors will probably be local cache manager, or distributed cache managers, or any other kind of caches. They can also be used to limit what requests are allowed to go out, and other nifty things you can imagine.


Method Index

 o processRequest(Request)
Can this processor handle this request ? Given the actual request, the processor is called to see if it can actually answer it.

Methods

 o processRequest
 public abstract Reply processRequest(Request request) throws HttpException
Can this processor handle this request ? Given the actual request, the processor is called to see if it can actually answer it. It this is the case, the processor should return a valid IngoingReply to be forwarded back to the application.

Parameters:
request - The request to be handled.
Returns:
An instance of Reply, or null if the processor was unable to answer the request.
Throws: HttpException
If the processor decies that this request is erroneous, and shouldn't proceed further.

All Packages  Class Hierarchy  This Package  Previous  Next  Index