| Package | Description |
|---|---|
| org.jboss.netty.handler.codec.http.multipart |
HTTP multipart support.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DiskFileUpload
Disk FileUpload implementation that stores file into real files
|
class |
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 size
|
| Modifier and Type | Field and Description |
|---|---|
private FileUpload |
HttpPostMultipartRequestDecoder.currentFileUpload
The current FileUpload that is currently in decode process
|
private FileUpload |
HttpPostRequestEncoder.currentFileUpload
The current FileUpload that is currently in encode process
|
private FileUpload |
MixedFileUpload.fileUpload |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Method and Description |
|---|---|
int |
DiskFileUpload.compareTo(FileUpload o) |
int |
MemoryFileUpload.compareTo(FileUpload o) |