Uses of Interface
org.jboss.netty.handler.codec.http.multipart.HttpDataFactory
Packages that use HttpDataFactory
Package
Description
HTTP multipart support.
-
Uses of HttpDataFactory in org.jboss.netty.example.http.upload
Fields in org.jboss.netty.example.http.upload declared as HttpDataFactoryModifier and TypeFieldDescriptionprivate static final HttpDataFactory
HttpUploadServerHandler.factory
Methods in org.jboss.netty.example.http.upload with parameters of type HttpDataFactoryModifier and TypeMethodDescriptionprivate static List
<InterfaceHttpData> HttpUploadClient.formpost
(ClientBootstrap bootstrap, String host, int port, URI uriSimple, File file, HttpDataFactory factory, List<Map.Entry<String, String>> headers) Standard post without multipart but already support on Factory (memory management)private static void
HttpUploadClient.formpostmultipart
(ClientBootstrap bootstrap, String host, int port, URI uriFile, HttpDataFactory factory, List<Map.Entry<String, String>> headers, List<InterfaceHttpData> bodylist) Multipart example -
Uses of HttpDataFactory in org.jboss.netty.handler.codec.http.multipart
Classes in org.jboss.netty.handler.codec.http.multipart that implement HttpDataFactoryModifier and TypeClassDescriptionclass
Default factory giving Attribute and FileUpload according to constructor Attribute and FileUpload could be :
- MemoryAttribute, DiskAttribute or MixedAttribute
- MemoryFileUpload, DiskFileUpload or MixedFileUpload
according to the constructor.Fields in org.jboss.netty.handler.codec.http.multipart declared as HttpDataFactoryModifier and TypeFieldDescriptionprivate final HttpDataFactory
HttpPostMultipartRequestDecoder.factory
Factory used to create InterfaceHttpDataprivate final HttpDataFactory
HttpPostRequestEncoder.factory
Factory used to create InterfaceHttpDataprivate final HttpDataFactory
HttpPostStandardRequestDecoder.factory
Factory used to create InterfaceHttpDataConstructors in org.jboss.netty.handler.codec.http.multipart with parameters of type HttpDataFactoryModifierConstructorDescriptionHttpPostMultipartRequestDecoder
(HttpDataFactory factory, HttpRequest request) HttpPostMultipartRequestDecoder
(HttpDataFactory factory, HttpRequest request, Charset charset) HttpPostRequestDecoder
(HttpDataFactory factory, HttpRequest request) HttpPostRequestDecoder
(HttpDataFactory factory, HttpRequest request, Charset charset) HttpPostRequestEncoder
(HttpDataFactory factory, HttpRequest request, boolean multipart) HttpPostRequestEncoder
(HttpDataFactory factory, HttpRequest request, boolean multipart, Charset charset) HttpPostRequestEncoder
(HttpDataFactory factory, HttpRequest request, boolean multipart, Charset charset, HttpPostRequestEncoder.EncoderMode encoderMode) HttpPostStandardRequestDecoder
(HttpDataFactory factory, HttpRequest request) HttpPostStandardRequestDecoder
(HttpDataFactory factory, HttpRequest request, Charset charset)