All Classes Interface Summary Class Summary Enum Summary Exception Summary
| Class |
Description |
| AbstractDiskHttpData |
Abstract Disk HttpData implementation
|
| AbstractHttpData |
Abstract HttpData implementation
|
| AbstractMemoryHttpData |
Abstract Memory HttpData implementation
|
| Attribute |
Attribute interface
|
| BinaryWebSocketFrame |
Web Socket frame containing binary data.
|
| ClientCookieDecoder |
A RFC6265 compliant cookie decoder to be used client side.
|
| ClientCookieEncoder |
Deprecated. |
| ClientCookieEncoder |
A RFC6265 compliant cookie encoder to be used client side, so
only name=value pairs are sent.
|
| CloseWebSocketFrame |
Web Socket Frame for closing the connection.
|
| CombinedHttpHeaders |
Will add multiple values for the same header as single header with a comma separated list of values.
|
| ContinuationWebSocketFrame |
Web Socket continuation frame containing continuation text or binary data.
|
| Cookie |
Deprecated.
|
| Cookie |
|
| CookieDecoder |
Parent of Client and Server side cookie decoders
|
| CookieDecoder |
Deprecated.
|
| CookieEncoder |
Parent of Client and Server side cookie encoders
|
| CookieHeaderNames |
|
| CookieHeaderNames.SameSite |
Possible values for the SameSite attribute.
|
| CorruptedWebSocketFrameException |
An DecoderException which is thrown when the received WebSocketFrame data could not be decoded by
an inbound handler.
|
| CorsConfig |
Configuration for Cross-Origin Resource Sharing (CORS).
|
| CorsConfig.Builder |
Deprecated.
|
| CorsConfig.DateValueGenerator |
Deprecated.
|
| CorsConfigBuilder |
Builder used to configure and build a CorsConfig instance.
|
| CorsHandler |
|
| DefaultCookie |
The default Cookie implementation.
|
| DefaultCookie |
Deprecated.
|
| DefaultFullHttpRequest |
|
| DefaultFullHttpResponse |
|
| DefaultHttpContent |
|
| DefaultHttpDataFactory |
|
| DefaultHttpHeaders |
|
| DefaultHttpHeadersFactory |
|
| DefaultHttpMessage |
|
| DefaultHttpObject |
|
| DefaultHttpRequest |
|
| DefaultHttpResponse |
|
| DefaultLastHttpContent |
|
| DefaultSpdyDataFrame |
|
| DefaultSpdyGoAwayFrame |
|
| DefaultSpdyHeaders |
|
| DefaultSpdyHeadersFrame |
|
| DefaultSpdyPingFrame |
|
| DefaultSpdyRstStreamFrame |
|
| DefaultSpdySettingsFrame |
|
| DefaultSpdyStreamFrame |
|
| DefaultSpdySynReplyFrame |
|
| DefaultSpdySynStreamFrame |
|
| DefaultSpdyUnknownFrame |
|
| DefaultSpdyWindowUpdateFrame |
|
| DeflateFrameClientExtensionHandshaker |
|
| DeflateFrameServerExtensionHandshaker |
|
| DiskAttribute |
Disk implementation of Attributes
|
| DiskFileUpload |
Disk FileUpload implementation that stores file into real files
|
| EmptyHttpHeaders |
|
| FileUpload |
FileUpload interface that could be in memory, on temporary file or any other implementations.
|
| FullHttpMessage |
|
| FullHttpRequest |
|
| FullHttpResponse |
|
| HttpChunkedInput |
A ChunkedInput that fetches data chunk by chunk for use with HTTP chunked transfers.
|
| HttpClientCodec |
|
| HttpClientUpgradeHandler |
Client-side handler for handling an HTTP upgrade handshake to another protocol.
|
| HttpClientUpgradeHandler.SourceCodec |
The source codec that is used in the pipeline initially.
|
| HttpClientUpgradeHandler.UpgradeCodec |
A codec that the source can be upgraded to.
|
| HttpClientUpgradeHandler.UpgradeEvent |
User events that are fired to notify about upgrade status.
|
| HttpConstants |
|
| HttpContent |
An HTTP chunk which is used for HTTP chunked transfer-encoding.
|
| HttpContentCompressor |
Compresses an HttpMessage and an HttpContent in gzip or
deflate encoding while respecting the "Accept-Encoding" header.
|
| HttpContentDecoder |
|
| HttpContentDecompressor |
|
| HttpContentEncoder |
|
| HttpContentEncoder.Result |
|
| HttpData |
Extended interface for InterfaceHttpData
|
| HttpDataFactory |
Interface to enable creation of InterfaceHttpData objects
|
| HttpDecoderConfig |
A configuration object for specifying the behaviour of HttpObjectDecoder and its subclasses.
|
| HttpExpectationFailedEvent |
A user event designed to communicate that a expectation has failed and there should be no expectation that a
body will follow.
|
| HttpHeaderDateFormat |
Deprecated.
|
| HttpHeaderNames |
Standard HTTP header names.
|
| HttpHeaders |
Provides the constants for the standard HTTP header names and values and
commonly used utility methods that accesses an HttpMessage.
|
| HttpHeaders.Names |
Deprecated.
|
| HttpHeaders.Values |
Deprecated.
|
| HttpHeadersFactory |
|
| HttpHeaderValidationUtil |
Functions used to perform various validations of HTTP header names and values.
|
| HttpHeaderValues |
Standard HTTP header values.
|
| HttpMessage |
|
| HttpMessageDecoderResult |
|
| HttpMethod |
The request method of HTTP or its derived protocols, such as
RTSP and
ICAP.
|
| HttpObject |
|
| HttpObjectAggregator |
|
| HttpObjectDecoder |
|
| HttpObjectEncoder<H extends HttpMessage> |
|
| HttpPostMultipartRequestDecoder |
This decoder will decode Body and can handle POST BODY.
|
| HttpPostRequestDecoder |
This decoder will decode Body and can handle POST BODY.
|
| HttpPostRequestDecoder.EndOfDataDecoderException |
Exception when the body is fully decoded, even if there is still data
|
| HttpPostRequestDecoder.ErrorDataDecoderException |
Exception when an error occurs while decoding
|
| HttpPostRequestDecoder.MultiPartStatus |
states follow NOTSTARTED PREAMBLE ( (HEADERDELIMITER DISPOSITION (FIELD |
FILEUPLOAD))* (HEADERDELIMITER DISPOSITION MIXEDPREAMBLE (MIXEDDELIMITER
MIXEDDISPOSITION MIXEDFILEUPLOAD)+ MIXEDCLOSEDELIMITER)* CLOSEDELIMITER)+
EPILOGUE
First getStatus is: NOSTARTED
Content-type: multipart/form-data, boundary=AaB03x => PREAMBLE in Header
--AaB03x => HEADERDELIMITER content-disposition: form-data; name="field1"
=> DISPOSITION
Joe Blow => FIELD --AaB03x => HEADERDELIMITER content-disposition:
form-data; name="pics" => DISPOSITION Content-type: multipart/mixed,
boundary=BbC04y
--BbC04y => MIXEDDELIMITER Content-disposition: attachment;
filename="file1.txt" => MIXEDDISPOSITION Content-Type: text/plain
... contents of file1.txt
|
| HttpPostRequestDecoder.NotEnoughDataDecoderException |
Exception when try reading data from request in chunked format, and not
enough data are available (need more chunks)
|
| HttpPostRequestDecoder.TooLongFormFieldException |
Exception when a field content is too long
|
| HttpPostRequestDecoder.TooManyFormFieldsException |
Exception when the maximum number of fields for a given form is reached
|
| HttpPostRequestEncoder |
This encoder will help to encode Request for a FORM as POST.
|
| HttpPostRequestEncoder.EncoderMode |
Different modes to use to encode form data.
|
| HttpPostRequestEncoder.ErrorDataEncoderException |
Exception when an error occurs while encoding
|
| HttpPostStandardRequestDecoder |
This decoder will decode Body and can handle POST BODY.
|
| HttpRequest |
An HTTP request.
|
| HttpRequestDecoder |
|
| HttpRequestEncoder |
|
| HttpResponse |
An HTTP response.
|
| HttpResponseDecoder |
|
| HttpResponseEncoder |
|
| HttpResponseStatus |
The response code and its description of HTTP or its derived protocols, such as
RTSP and
ICAP.
|
| HttpScheme |
Defines the common schemes used for the HTTP protocol as defined by
rfc7230.
|
| HttpServerCodec |
|
| HttpServerExpectContinueHandler |
|
| HttpServerKeepAliveHandler |
HttpServerKeepAliveHandler helps close persistent connections when appropriate.
|
| HttpServerUpgradeHandler |
A server-side handler that receives HTTP requests and optionally performs a protocol switch if
the requested protocol is supported.
|
| HttpServerUpgradeHandler.SourceCodec |
The source codec that is used in the pipeline initially.
|
| HttpServerUpgradeHandler.UpgradeCodec |
A codec that the source can be upgraded to.
|
| HttpServerUpgradeHandler.UpgradeCodecFactory |
|
| HttpServerUpgradeHandler.UpgradeEvent |
User event that is fired to notify about the completion of an HTTP upgrade
to another protocol.
|
| HttpStatusClass |
The class of HTTP status.
|
| HttpUtil |
Utility methods useful in the HTTP context.
|
| HttpVersion |
The version of HTTP or its derived protocols, such as
RTSP and
ICAP.
|
| InterfaceHttpData |
Interface for all Objects that could be encoded/decoded using HttpPostRequestEncoder/Decoder
|
| InterfaceHttpData.HttpDataType |
|
| InterfaceHttpPostRequestDecoder |
This decoder will decode Body and can handle POST BODY.
|
| LastHttpContent |
|
| MemoryAttribute |
Memory implementation of Attributes
|
| MemoryFileUpload |
Default FileUpload implementation that stores file into memory.
Warning: be aware of the memory limitation.
|
| MixedAttribute |
Mixed implementation using both in Memory and in File with a limit of size
|
| MixedFileUpload |
Mixed implementation using both in Memory and in File with a limit of size
|
| PerMessageDeflateClientExtensionHandshaker |
|
| PerMessageDeflateServerExtensionHandshaker |
|
| PingWebSocketFrame |
Web Socket frame containing binary data.
|
| PongWebSocketFrame |
Web Socket frame containing binary data.
|
| QueryStringDecoder |
Splits an HTTP query string into a path string and key-value parameter pairs.
|
| QueryStringDecoder.Builder |
|
| QueryStringEncoder |
Creates a URL-encoded URI from a path string and key-value parameter pairs.
|
| RandomWebSocketFrameMaskGenerator |
|
| ReadOnlyHttpHeaders |
A variant of HttpHeaders which only supports read-only methods.
|
| RtspDecoder |
Decodes ByteBufs into RTSP messages represented in
HttpMessages.
|
| RtspEncoder |
|
| RtspHeaderNames |
Standard RTSP header names.
|
| RtspHeaders |
Deprecated.
|
| RtspHeaders.Names |
Deprecated.
|
| RtspHeaders.Values |
Deprecated.
|
| RtspHeaderValues |
Standard RTSP header names.
|
| RtspMethods |
The request getMethod of RTSP.
|
| RtspObjectDecoder |
Deprecated.
|
| RtspObjectEncoder<H extends HttpMessage> |
Deprecated.
|
| RtspRequestDecoder |
Deprecated.
|
| RtspRequestEncoder |
Deprecated.
|
| RtspResponseDecoder |
Deprecated.
|
| RtspResponseEncoder |
Deprecated.
|
| RtspResponseStatuses |
The getStatus code and its description of a RTSP response.
|
| RtspVersions |
The version of RTSP.
|
| 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).
|
| ServerCookieEncoder |
Deprecated.
|
| SpdyDataFrame |
A SPDY Protocol DATA Frame
|
| SpdyFrame |
A SPDY Protocol Frame
|
| SpdyFrameCodec |
A ChannelHandler that encodes and decodes SPDY Frames.
|
| SpdyFrameDecoder |
Decodes ByteBufs into SPDY Frames.
|
| SpdyFrameDecoderDelegate |
|
| SpdyFrameEncoder |
Encodes a SPDY Frame into a ByteBuf.
|
| SpdyGoAwayFrame |
A SPDY Protocol GOAWAY Frame
|
| SpdyHeaderBlockDecoder |
Super-class for SPDY header-block decoders.
|
| SpdyHeaderBlockEncoder |
Super-class for SPDY header-block encoders.
|
| SpdyHeaderBlockRawDecoder |
|
| SpdyHeaderBlockRawEncoder |
|
| SpdyHeaders |
Provides the constants for the standard SPDY HTTP header names and commonly
used utility methods that access a SpdyHeadersFrame.
|
| SpdyHeaders.HttpNames |
SPDY HTTP header names
|
| SpdyHeadersFrame |
A SPDY Protocol HEADERS Frame
|
| SpdyHttpCodec |
|
| SpdyHttpDecoder |
|
| SpdyHttpEncoder |
|
| SpdyHttpHeaders |
|
| SpdyHttpHeaders.Names |
SPDY HTTP header names
|
| SpdyHttpResponseStreamIdHandler |
|
| SpdyPingFrame |
A SPDY Protocol PING Frame
|
| SpdyProtocolException |
|
| SpdyRstStreamFrame |
A SPDY Protocol RST_STREAM Frame
|
| SpdySessionHandler |
Manages streams within a SPDY session.
|
| SpdySessionStatus |
The SPDY session status code and its description.
|
| SpdySettingsFrame |
A SPDY Protocol SETTINGS Frame
|
| SpdyStreamFrame |
A SPDY Protocol Frame that is associated with an individual SPDY Stream
|
| SpdyStreamStatus |
The SPDY stream status code and its description.
|
| SpdySynReplyFrame |
A SPDY Protocol SYN_REPLY Frame
|
| SpdySynStreamFrame |
A SPDY Protocol SYN_STREAM Frame
|
| SpdyUnknownFrame |
A SPDY Control frame.
|
| SpdyVersion |
|
| SpdyWindowUpdateFrame |
A SPDY Protocol WINDOW_UPDATE Frame
|
| TextWebSocketFrame |
Web Socket text frame.
|
| TooLongHttpContentException |
An TooLongFrameException which is thrown when the length of the
content decoded is greater than the allowed maximum.
|
| TooLongHttpHeaderException |
An TooLongFrameException which is thrown when the length of the
header decoded is greater than the allowed maximum.
|
| TooLongHttpLineException |
An TooLongFrameException which is thrown when the length of the
line decoded is greater than the allowed maximum.
|
| Utf8FrameValidator |
|
| WebSocket00FrameDecoder |
|
| WebSocket00FrameEncoder |
|
| WebSocket07FrameDecoder |
Decodes a web socket frame from wire protocol version 7 format.
|
| WebSocket07FrameEncoder |
Encodes a web socket frame into wire protocol version 7 format.
|
| WebSocket08FrameDecoder |
Decodes a web socket frame from wire protocol version 8 format.
|
| WebSocket08FrameEncoder |
Encodes a web socket frame into wire protocol version 8 format.
|
| WebSocket13FrameDecoder |
Decodes a web socket frame from wire protocol version 13 format.
|
| WebSocket13FrameEncoder |
Encodes a web socket frame into wire protocol version 13 format.
|
| WebSocketChunkedInput |
A ChunkedInput that fetches data chunk by chunk for use with WebSocket chunked transfers.
|
| WebSocketClientCompressionHandler |
Extends io.netty.handler.codec.http.websocketx.extensions.compression.WebSocketClientExtensionHandler
to handle the most common WebSocket Compression Extensions.
|
| WebSocketClientExtension |
Created once the handshake phase is done.
|
| WebSocketClientExtensionHandler |
This handler negotiates and initializes the WebSocket Extensions.
|
| WebSocketClientExtensionHandshaker |
Handshakes a client extension with the server.
|
| WebSocketClientHandshakeException |
Client exception during handshaking process.
|
| WebSocketClientHandshaker |
Base class for web socket client handshake implementations
|
| WebSocketClientHandshaker00 |
|
| WebSocketClientHandshaker07 |
|
| WebSocketClientHandshaker08 |
|
| WebSocketClientHandshaker13 |
|
| WebSocketClientHandshakerFactory |
|
| WebSocketClientProtocolConfig |
WebSocket server configuration.
|
| WebSocketClientProtocolConfig.Builder |
|
| WebSocketClientProtocolHandler |
This handler does all the heavy lifting for you to run a websocket client.
|
| WebSocketClientProtocolHandler.ClientHandshakeStateEvent |
Events that are fired to notify about handshake status
|
| WebSocketCloseStatus |
WebSocket status codes specified in RFC-6455.
|
| WebSocketDecoderConfig |
Frames decoder configuration.
|
| WebSocketDecoderConfig.Builder |
|
| WebSocketExtension |
Created once the handshake phase is done.
|
| WebSocketExtensionData |
A WebSocket Extension data from the Sec-WebSocket-Extensions header.
|
| WebSocketExtensionDecoder |
Convenient class for io.netty.handler.codec.http.websocketx.extensions.WebSocketExtension decoder.
|
| WebSocketExtensionEncoder |
Convenient class for io.netty.handler.codec.http.websocketx.extensions.WebSocketExtension encoder.
|
| WebSocketExtensionFilter |
Filter that is responsible to skip the evaluation of a certain extension
according to standard.
|
| WebSocketExtensionFilterProvider |
Extension filter provider that is responsible to provide filters for a certain WebSocketExtension extension.
|
| WebSocketExtensionUtil |
|
| WebSocketFrame |
Base class for web socket frames.
|
| WebSocketFrameAggregator |
Handler that aggregate fragmented WebSocketFrame's.
|
| WebSocketFrameDecoder |
Marker interface which all WebSocketFrame decoders need to implement.
|
| WebSocketFrameEncoder |
Marker interface which all WebSocketFrame encoders need to implement.
|
| WebSocketFrameMaskGenerator |
Allows to customize how the mask is generated that is used to mask the WebSocketFrame.
|
| WebSocketHandshakeException |
Exception during handshaking process
|
| WebSocketScheme |
Defines the common schemes used for the WebSocket protocol as defined by
rfc6455.
|
| WebSocketServerCompressionHandler |
Extends io.netty.handler.codec.http.websocketx.extensions.compression.WebSocketServerExtensionHandler
to handle the most common WebSocket Compression Extensions.
|
| WebSocketServerExtension |
Created once the handshake phase is done.
|
| WebSocketServerExtensionHandler |
This handler negotiates and initializes the WebSocket Extensions.
|
| WebSocketServerExtensionHandshaker |
Handshakes a client extension based on this server capabilities.
|
| WebSocketServerHandshakeException |
Server exception during handshaking process.
|
| WebSocketServerHandshaker |
Base class for server side web socket opening and closing handshakes
|
| WebSocketServerHandshaker00 |
|
| WebSocketServerHandshaker07 |
|
| WebSocketServerHandshaker08 |
|
| WebSocketServerHandshaker13 |
|
| WebSocketServerHandshakerFactory |
|
| WebSocketServerProtocolConfig |
WebSocket server configuration.
|
| WebSocketServerProtocolConfig.Builder |
|
| WebSocketServerProtocolHandler |
This handler does all the heavy lifting for you to run a websocket server.
|
| WebSocketServerProtocolHandler.HandshakeComplete |
The Handshake was completed successfully and the channel was upgraded to websockets.
|
| WebSocketServerProtocolHandler.ServerHandshakeStateEvent |
Events that are fired to notify about handshake status
|
| WebSocketVersion |
Versions of the web socket specification.
|