Uses of Interface
org.jboss.netty.handler.codec.http.HttpRequest
-
Packages that use HttpRequest Package Description org.jboss.netty.example.http.snoop org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.example.http.websocketx.server This package contains an example web socket web server.org.jboss.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.org.jboss.netty.handler.codec.http.multipart HTTP multipart support.org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol. -
-
Uses of HttpRequest in org.jboss.netty.example.http.snoop
Fields in org.jboss.netty.example.http.snoop declared as HttpRequest Modifier and Type Field Description private HttpRequest
HttpSnoopServerHandler. request
-
Uses of HttpRequest in org.jboss.netty.example.http.upload
Fields in org.jboss.netty.example.http.upload declared as HttpRequest Modifier and Type Field Description private HttpRequest
HttpUploadServerHandler. request
-
Uses of HttpRequest in org.jboss.netty.example.http.websocketx.autobahn
Methods in org.jboss.netty.example.http.websocketx.autobahn with parameters of type HttpRequest Modifier and Type Method Description private static java.lang.String
AutobahnServerHandler. getWebSocketLocation(HttpRequest req)
private void
AutobahnServerHandler. handleHttpRequest(ChannelHandlerContext ctx, HttpRequest req)
private static void
AutobahnServerHandler. sendHttpResponse(ChannelHandlerContext ctx, HttpRequest req, HttpResponse res)
-
Uses of HttpRequest in org.jboss.netty.example.http.websocketx.server
Methods in org.jboss.netty.example.http.websocketx.server with parameters of type HttpRequest Modifier and Type Method Description private static java.lang.String
WebSocketServerHandler. getWebSocketLocation(HttpRequest req)
private void
WebSocketServerHandler. handleHttpRequest(ChannelHandlerContext ctx, HttpRequest req)
private static void
WebSocketServerHandler. sendHttpResponse(ChannelHandlerContext ctx, HttpRequest req, HttpResponse res)
-
Uses of HttpRequest in org.jboss.netty.handler.codec.http
Classes in org.jboss.netty.handler.codec.http that implement HttpRequest Modifier and Type Class Description class
DefaultHttpRequest
The defaultHttpRequest
implementation. -
Uses of HttpRequest in org.jboss.netty.handler.codec.http.multipart
Fields in org.jboss.netty.handler.codec.http.multipart declared as HttpRequest Modifier and Type Field Description private HttpRequest
HttpPostMultipartRequestDecoder. request
Request to decodeprivate HttpRequest
HttpPostRequestEncoder. request
Request to encodeprivate HttpRequest
HttpPostStandardRequestDecoder. request
Request to decodeFields in org.jboss.netty.handler.codec.http.multipart with type parameters of type HttpRequest Modifier and Type Field Description private java.util.Map<HttpRequest,java.util.List<HttpData>>
DefaultHttpDataFactory. requestFileDeleteMap
Keep all HttpDatas until cleanAllHttpDatas() is called.Methods in org.jboss.netty.handler.codec.http.multipart that return HttpRequest Modifier and Type Method Description HttpRequest
HttpPostRequestEncoder. finalizeRequest()
Finalize the request by preparing the Header in the request and returns the request ready to be sent.
Once finalized, no data must be added.
If the request does not need chunk (isChunked() == false), this request is the only object to send to the remote server.Methods in org.jboss.netty.handler.codec.http.multipart with parameters of type HttpRequest Modifier and Type Method Description void
DefaultHttpDataFactory. cleanRequestHttpDatas(HttpRequest request)
void
HttpDataFactory. cleanRequestHttpDatas(HttpRequest request)
Remove all InterfaceHttpData from virtual File storage from clean list for the requestAttribute
DefaultHttpDataFactory. createAttribute(HttpRequest request, java.lang.String name)
Attribute
DefaultHttpDataFactory. createAttribute(HttpRequest request, java.lang.String name, java.lang.String value)
Attribute
HttpDataFactory. createAttribute(HttpRequest request, java.lang.String name)
Attribute
HttpDataFactory. createAttribute(HttpRequest request, java.lang.String name, java.lang.String value)
FileUpload
DefaultHttpDataFactory. createFileUpload(HttpRequest request, java.lang.String name, java.lang.String filename, java.lang.String contentType, java.lang.String contentTransferEncoding, java.nio.charset.Charset charset, long size)
FileUpload
HttpDataFactory. createFileUpload(HttpRequest request, java.lang.String name, java.lang.String filename, java.lang.String contentType, java.lang.String contentTransferEncoding, java.nio.charset.Charset charset, long size)
private java.util.List<HttpData>
DefaultHttpDataFactory. getList(HttpRequest request)
static boolean
HttpPostRequestDecoder. isMultipart(HttpRequest request)
Check if the given request is a multipart requestvoid
DefaultHttpDataFactory. removeHttpDataFromClean(HttpRequest request, InterfaceHttpData data)
void
HttpDataFactory. removeHttpDataFromClean(HttpRequest request, InterfaceHttpData data)
Remove the given InterfaceHttpData from clean list (will not delete the file, except if the file is still a temporary one as setup at construction)Constructors in org.jboss.netty.handler.codec.http.multipart with parameters of type HttpRequest Constructor Description HttpPostMultipartRequestDecoder(HttpRequest request)
HttpPostMultipartRequestDecoder(HttpDataFactory factory, HttpRequest request)
HttpPostMultipartRequestDecoder(HttpDataFactory factory, HttpRequest request, java.nio.charset.Charset charset)
HttpPostMultipartRequestDecoder(HttpDataFactory factory, HttpRequest request, java.nio.charset.Charset charset, int maxFields, int maxBufferedBytes)
HttpPostRequestDecoder(HttpRequest request)
HttpPostRequestDecoder(HttpRequest request, int maxFields, int maxBufferedBytes)
HttpPostRequestDecoder(HttpDataFactory factory, HttpRequest request)
HttpPostRequestDecoder(HttpDataFactory factory, HttpRequest request, java.nio.charset.Charset charset)
HttpPostRequestDecoder(HttpDataFactory factory, HttpRequest request, java.nio.charset.Charset charset, int maxFields, int maxBufferedBytes)
HttpPostRequestEncoder(HttpRequest request, boolean multipart)
HttpPostRequestEncoder(HttpDataFactory factory, HttpRequest request, boolean multipart)
HttpPostRequestEncoder(HttpDataFactory factory, HttpRequest request, boolean multipart, java.nio.charset.Charset charset)
HttpPostRequestEncoder(HttpDataFactory factory, HttpRequest request, boolean multipart, java.nio.charset.Charset charset, HttpPostRequestEncoder.EncoderMode encoderMode)
HttpPostStandardRequestDecoder(HttpRequest request)
HttpPostStandardRequestDecoder(HttpDataFactory factory, HttpRequest request)
HttpPostStandardRequestDecoder(HttpDataFactory factory, HttpRequest request, java.nio.charset.Charset charset)
HttpPostStandardRequestDecoder(HttpDataFactory factory, HttpRequest request, java.nio.charset.Charset charset, int maxFields, int maxBufferedBytes)
-
Uses of HttpRequest in org.jboss.netty.handler.codec.http.websocketx
Methods in org.jboss.netty.handler.codec.http.websocketx with parameters of type HttpRequest Modifier and Type Method Description private static java.lang.String
WebSocketServerProtocolHandshakeHandler. getWebSocketLocation(ChannelPipeline cp, HttpRequest req, java.lang.String path)
abstract ChannelFuture
WebSocketServerHandshaker. handshake(Channel channel, HttpRequest req)
Performs the opening handshakeChannelFuture
WebSocketServerHandshaker00. handshake(Channel channel, HttpRequest req)
Handle the web socket handshake for the web socket specification HyBi version 0 and lower.ChannelFuture
WebSocketServerHandshaker07. handshake(Channel channel, HttpRequest req)
Handle the web socket handshake for the web socket specification HyBi version 7.ChannelFuture
WebSocketServerHandshaker08. handshake(Channel channel, HttpRequest req)
Handle the web socket handshake for the web socket specification HyBi version 8 to 10.ChannelFuture
WebSocketServerHandshaker13. handshake(Channel channel, HttpRequest req)
Handle the web socket handshake for the web socket specification HyBi versions 13-17.WebSocketServerHandshaker
WebSocketServerHandshakerFactory. newHandshaker(HttpRequest req)
Instances a new handshakerprivate static void
WebSocketServerProtocolHandshakeHandler. sendHttpResponse(ChannelHandlerContext ctx, HttpRequest req, HttpResponse res)
-
Uses of HttpRequest in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy that return HttpRequest Modifier and Type Method Description private static HttpRequest
SpdyHttpDecoder. createHttpRequest(int spdyVersion, SpdyHeadersFrame requestFrame)
-