org.w3c.www.protocol.http |
|
Java Source File Name | Type | Comment |
ConnectedEvent.java | Class | |
ContinueEvent.java | Class | The continue event notifies the observer of receipt of a continue packet.
Two phases method requires the server to emit an HTTP CONTINUE
status code before going into the second phase. |
DebugFilter.java | Class | A simple debug filter, that will dump traffic
This filter will dump the outgoing request, and the incomming reply to
the java process standard output. |
FilterEngine.java | Class | |
Handler.java | Class | |
HttpBasicConnection.java | Class | |
HttpBasicServer.java | Class | The basic server class, to run requests.
A server instance (ie an object conforming to the HttpServer
interface is resposnsible for running all requests to a given host.
To do so, it manages a connnnection pool (ie a set of available
connections) which it negotiates with the global HTTP manager. |
HttpConnection.java | Class | |
HttpException.java | Class | Exception thrown when processing a request failed. |
HttpManager.java | Class | |
HttpMuxConnection.java | Class | |
HttpMuxServer.java | Class | |
HttpServer.java | Class | The HttpServer interface. |
HttpServerState.java | Class | |
HttpURLConnection.java | Class | |
PropRequestFilter.java | Interface | The PropRequestFilter interface.
This interface extends the basic requestFilter interface, in order to
allow the implementing filters to be set through the
org.w3c.www.protocol.http.filters property.
To set a PropRequestFilter through this property, you just need to
define the property to a | separated list of
PropRequestFilter compatible class. |
PropRequestFilterException.java | Class | |
Reply.java | Class | |
Request.java | Class | The client side idea of a request. |
RequestEvent.java | Class | The base class for request events. |
RequestFilter.java | Interface | The request filter interface.
Filters allow application wide request enhancement before they are being
actually emited on the wire. |
RequestObserver.java | Interface | The interface to be implemented by request observers.
Request observers are objects that will be notified of the progress
made in processing an asynchronous request. |
RequestProcessor.java | Interface | 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. |