See: Description
| Interface | Description |
|---|---|
| Cookie |
An interface defining an
HTTP cookie.
|
| FullHttpMessage |
Combines
HttpMessage and LastHttpContent into one
message. |
| FullHttpRequest |
Combinate the
HttpRequest and FullHttpMessage, so the request is a complete HTTP request. |
| FullHttpResponse |
Combination of a
HttpResponse and FullHttpMessage. |
| HttpClientUpgradeHandler.SourceCodec |
The source codec that is used in the pipeline initially.
|
| HttpClientUpgradeHandler.UpgradeCodec |
A codec that the source can be upgraded to.
|
| HttpContent |
An HTTP chunk which is used for HTTP chunked transfer-encoding.
|
| HttpHeaders |
Provides the constants for the standard HTTP header names and values and
commonly used utility methods that accesses an
HttpMessage. |
| HttpMessage |
An interface that defines a HTTP message, providing common properties for
HttpRequest and HttpResponse. |
| HttpObject | |
| HttpRequest |
An HTTP request.
|
| HttpResponse |
An HTTP response.
|
| HttpServerUpgradeHandler.SourceCodec |
The source codec that is used in the pipeline initially.
|
| HttpServerUpgradeHandler.UpgradeCodec |
A codec that the source can be upgraded to.
|
| LastHttpContent |
The last
HttpContent which has trailing headers. |
| Class | Description |
|---|---|
| ClientCookieDecoder |
A RFC6265 compliant cookie decoder to be used client side.
|
| ClientCookieEncoder |
A RFC6265 compliant cookie encoder to be used client side,
so only name=value pairs are sent.
|
| DefaultCookie |
The default
Cookie implementation. |
| DefaultFullHttpRequest |
Default implementation of
FullHttpRequest. |
| DefaultFullHttpResponse |
Default implementation of a
FullHttpResponse. |
| DefaultHttpContent |
The default
HttpContent implementation. |
| DefaultHttpHeaders | |
| DefaultHttpMessage |
The default
HttpMessage implementation. |
| DefaultHttpObject | |
| DefaultHttpRequest |
The default
HttpRequest implementation. |
| DefaultHttpResponse |
The default
HttpResponse implementation. |
| DefaultLastHttpContent |
The default
LastHttpContent implementation. |
| EmptyHttpHeaders | |
| HttpChunkedInput |
A
ChunkedInput that fetches data chunk by chunk for use with HTTP chunked transfers. |
| HttpClientCodec |
A combination of
HttpRequestEncoder and HttpResponseDecoder
which enables easier client side HTTP implementation. |
| HttpClientUpgradeHandler |
Client-side handler for handling an HTTP upgrade handshake to another protocol.
|
| HttpConstants | |
| HttpContentCompressor |
Compresses an
HttpMessage and an HttpContent in gzip or
deflate encoding while respecting the "Accept-Encoding" header. |
| HttpContentDecoder |
Decodes the content of the received
HttpRequest and HttpContent. |
| HttpContentDecompressor | |
| HttpContentEncoder |
Encodes the content of the outbound
HttpResponse and HttpContent. |
| HttpContentEncoder.Result | |
| HttpHeaderNames |
Standard HTTP header names.
|
| HttpHeaderUtil | |
| HttpHeaderValues |
Standard HTTP header values.
|
| HttpMethod | |
| HttpObjectAggregator |
A
ChannelHandler that aggregates an HttpMessage
and its following HttpContents into a single FullHttpRequest
or FullHttpResponse (depending on if it used to handle requests or responses)
with no following HttpContents. |
| HttpObjectDecoder | |
| HttpObjectEncoder<H extends HttpMessage> | |
| HttpRequestDecoder | |
| HttpRequestEncoder | |
| HttpResponseDecoder | |
| HttpResponseEncoder | |
| HttpResponseStatus | |
| HttpServerCodec |
A combination of
HttpRequestDecoder and HttpResponseEncoder
which enables easier server side HTTP implementation. |
| HttpServerUpgradeHandler |
A server-side handler that receives HTTP requests and optionally performs a protocol switch if
the requested protocol is supported.
|
| HttpServerUpgradeHandler.UpgradeEvent |
User event that is fired to notify about the completion of an HTTP upgrade
to another protocol.
|
| HttpVersion | |
| QueryStringDecoder |
Splits an HTTP query string into a path string and key-value parameter pairs.
|
| QueryStringEncoder |
Creates an URL-encoded URI from a path string and key-value parameter pairs.
|
| ServerCookieDecoder |
A RFC6265 compliant cookie decoder to be used server side.
|
| ServerCookieEncoder |
A RFC6265 compliant cookie encoder to be used server side,
so some fields are sent (Version is typically ignored).
|
| Enum | Description |
|---|---|
| HttpClientUpgradeHandler.UpgradeEvent |
User events that are fired to notify about upgrade status.
|
| HttpStatusClass |
The class of HTTP status.
|
Copyright © 2008–2015 The Netty Project. All rights reserved.