Package org.omegazero.http.util
package org.omegazero.http.util
Provides utility classes and an abstraction layer for HTTP communication of any HTTP version.
-
ClassDescriptionA
HTTPClientStream
with several basic methods implemented.AHTTPMessageStream
with several basic methods implemented.AHTTPServerStream
with several basic methods implemented.AHTTPClient
is associated with a single connection to a server where requests can be sent to usingHTTPClient.newRequest(HTTPRequest)
.AHTTPClientStream
represents a single HTTP request transaction from the perspective of the client, including the outgoingHTTPRequest
and its data, and is used for receiving the corresponding response.AHTTPMessageStream
represents a single HTTP request transaction.AHTTPServer
is associated with a single client connection from which it receives data, which is then processed to createHTTPServerStream
s usable by the application.AHTTPServerStream
represents a single HTTP request transaction from the perspective of the server, including the incomingHTTPRequest
and its associated incoming data, and is used to send a corresponding response.Contains standard or widely used HTTP status code numbers.Contains several methods for validating HTTP message components.Provides an abstraction layer for outgoing data over a socket.