Uses of Interface
org.jboss.netty.handler.codec.http.multipart.FileUpload
-
Packages that use FileUpload Package Description org.jboss.netty.handler.codec.http.multipart HTTP multipart support. -
-
Uses of FileUpload in org.jboss.netty.handler.codec.http.multipart
Classes in org.jboss.netty.handler.codec.http.multipart that implement FileUpload Modifier and Type Class Description class
DiskFileUpload
Disk FileUpload implementation that stores file into real filesclass
MemoryFileUpload
Default FileUpload implementation that stores file into memory.
Warning: be aware of the memory limitation.class
MixedFileUpload
Mixed implementation using both in Memory and in File with a limit of sizeMethods in org.jboss.netty.handler.codec.http.multipart that return FileUpload Modifier and Type Method Description FileUpload
DefaultHttpDataFactory. createFileUpload(HttpRequest request, String name, String filename, String contentType, String contentTransferEncoding, Charset charset, long size)
FileUpload
HttpDataFactory. createFileUpload(HttpRequest request, String name, String filename, String contentType, String contentTransferEncoding, Charset charset, long size)
Methods in org.jboss.netty.handler.codec.http.multipart with parameters of type FileUpload Modifier and Type Method Description int
DiskFileUpload. compareTo(FileUpload o)
int
MemoryFileUpload. compareTo(FileUpload o)
-