Uses of Interface
org.jboss.netty.handler.codec.http.HttpRequest
-
Packages that use HttpRequest Package Description 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. -
-
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 classDefaultHttpRequestThe defaultHttpRequestimplementation. -
Uses of HttpRequest in org.jboss.netty.handler.codec.http.multipart
Methods in org.jboss.netty.handler.codec.http.multipart that return HttpRequest Modifier and Type Method Description HttpRequestHttpPostRequestEncoder. 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 voidDefaultHttpDataFactory. cleanRequestHttpDatas(HttpRequest request)voidHttpDataFactory. cleanRequestHttpDatas(HttpRequest request)Remove all InterfaceHttpData from virtual File storage from clean list for the requestAttributeDefaultHttpDataFactory. createAttribute(HttpRequest request, String name)AttributeDefaultHttpDataFactory. createAttribute(HttpRequest request, String name, String value)AttributeHttpDataFactory. createAttribute(HttpRequest request, String name)AttributeHttpDataFactory. createAttribute(HttpRequest request, String name, String value)FileUploadDefaultHttpDataFactory. createFileUpload(HttpRequest request, String name, String filename, String contentType, String contentTransferEncoding, Charset charset, long size)FileUploadHttpDataFactory. createFileUpload(HttpRequest request, String name, String filename, String contentType, String contentTransferEncoding, Charset charset, long size)static booleanHttpPostRequestDecoder. isMultipart(HttpRequest request)Check if the given request is a multipart requestvoidDefaultHttpDataFactory. removeHttpDataFromClean(HttpRequest request, InterfaceHttpData data)voidHttpDataFactory. 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) -
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 abstract ChannelFutureWebSocketServerHandshaker. handshake(Channel channel, HttpRequest req)Performs the opening handshakeChannelFutureWebSocketServerHandshaker00. handshake(Channel channel, HttpRequest req)Handle the web socket handshake for the web socket specification HyBi version 0 and lower.ChannelFutureWebSocketServerHandshaker07. handshake(Channel channel, HttpRequest req)Handle the web socket handshake for the web socket specification HyBi version 7.ChannelFutureWebSocketServerHandshaker08. handshake(Channel channel, HttpRequest req)Handle the web socket handshake for the web socket specification HyBi version 8 to 10.ChannelFutureWebSocketServerHandshaker13. handshake(Channel channel, HttpRequest req)Handle the web socket handshake for the web socket specification HyBi versions 13-17.WebSocketServerHandshakerWebSocketServerHandshakerFactory. newHandshaker(HttpRequest req)Instances a new handshaker
-