| Package | Description | 
|---|---|
| io.netty.handler.codec.http.multipart | HTTP multipart support. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | AttributeAttribute interface | 
| interface  | FileUploadFileUpload interface that could be in memory, on temporary file or any other implementations. | 
| interface  | HttpDataExtended interface for InterfaceHttpData | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractDiskHttpDataAbstract Disk HttpData implementation | 
| class  | AbstractHttpDataAbstract HttpData implementation | 
| class  | AbstractMemoryHttpDataAbstract Memory HttpData implementation | 
| class  | DiskAttributeDisk implementation of Attributes | 
| class  | DiskFileUploadDisk FileUpload implementation that stores file into real files | 
| class  | MemoryAttributeMemory implementation of Attributes | 
| class  | MemoryFileUploadDefault FileUpload implementation that stores file into memory. | 
| class  | MixedAttributeMixed implementation using both in Memory and in File with a limit of size | 
| class  | MixedFileUploadMixed implementation using both in Memory and in File with a limit of size | 
| Modifier and Type | Method and Description | 
|---|---|
| InterfaceHttpData | InterfaceHttpPostRequestDecoder. getBodyHttpData(String name)This getMethod returns the first InterfaceHttpData with the given name from
 body. | 
| InterfaceHttpData | HttpPostRequestDecoder. getBodyHttpData(String name) | 
| InterfaceHttpData | HttpPostMultipartRequestDecoder. getBodyHttpData(String name)This getMethod returns the first InterfaceHttpData with the given name from
 body. | 
| InterfaceHttpData | HttpPostStandardRequestDecoder. getBodyHttpData(String name)This getMethod returns the first InterfaceHttpData with the given name from
 body. | 
| protected InterfaceHttpData | HttpPostMultipartRequestDecoder. getFileUpload(String delimiter)Get the FileUpload (new one or current one) | 
| InterfaceHttpData | InterfaceHttpPostRequestDecoder. next()Returns the next available InterfaceHttpData or null if, at the time it
 is called, there is no more available InterfaceHttpData. | 
| InterfaceHttpData | HttpPostRequestDecoder. next() | 
| InterfaceHttpData | HttpPostMultipartRequestDecoder. next()Returns the next available InterfaceHttpData or null if, at the time it
 is called, there is no more available InterfaceHttpData. | 
| InterfaceHttpData | HttpPostStandardRequestDecoder. next()Returns the next available InterfaceHttpData or null if, at the time it
 is called, there is no more available InterfaceHttpData. | 
| InterfaceHttpData | InterfaceHttpData. retain() | 
| InterfaceHttpData | InterfaceHttpData. retain(int increment) | 
| InterfaceHttpData | InterfaceHttpData. touch() | 
| InterfaceHttpData | InterfaceHttpData. touch(Object hint) | 
| Modifier and Type | Method and Description | 
|---|---|
| List<InterfaceHttpData> | InterfaceHttpPostRequestDecoder. getBodyHttpDatas()This getMethod returns a List of all HttpDatas from body. | 
| List<InterfaceHttpData> | HttpPostRequestDecoder. getBodyHttpDatas() | 
| List<InterfaceHttpData> | HttpPostMultipartRequestDecoder. getBodyHttpDatas()This getMethod returns a List of all HttpDatas from body. | 
| List<InterfaceHttpData> | HttpPostStandardRequestDecoder. getBodyHttpDatas()This getMethod returns a List of all HttpDatas from body. | 
| List<InterfaceHttpData> | InterfaceHttpPostRequestDecoder. getBodyHttpDatas(String name)This getMethod returns a List of all HttpDatas with the given name from
 body. | 
| List<InterfaceHttpData> | HttpPostRequestDecoder. getBodyHttpDatas(String name) | 
| List<InterfaceHttpData> | HttpPostMultipartRequestDecoder. getBodyHttpDatas(String name)This getMethod returns a List of all HttpDatas with the given name from
 body. | 
| List<InterfaceHttpData> | HttpPostStandardRequestDecoder. getBodyHttpDatas(String name)This getMethod returns a List of all HttpDatas with the given name from
 body. | 
| List<InterfaceHttpData> | HttpPostRequestEncoder. getBodyListAttributes()This getMethod returns a List of all InterfaceHttpData from body part. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | HttpPostRequestEncoder. addBodyHttpData(InterfaceHttpData data)Add the InterfaceHttpData to the Body list | 
| protected void | HttpPostMultipartRequestDecoder. addHttpData(InterfaceHttpData data)Utility function to add a new decoded data | 
| protected void | HttpPostStandardRequestDecoder. addHttpData(InterfaceHttpData data)Utility function to add a new decoded data | 
| int | DiskAttribute. compareTo(InterfaceHttpData o) | 
| int | DiskFileUpload. compareTo(InterfaceHttpData o) | 
| int | MixedFileUpload. compareTo(InterfaceHttpData o) | 
| int | MixedAttribute. compareTo(InterfaceHttpData o) | 
| int | MemoryFileUpload. compareTo(InterfaceHttpData o) | 
| int | MemoryAttribute. compareTo(InterfaceHttpData other) | 
| void | 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) | 
| void | InterfaceHttpPostRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)Remove the given FileUpload from the list of FileUploads to clean | 
| void | HttpPostRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data) | 
| void | HttpPostMultipartRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)Remove the given FileUpload from the list of FileUploads to clean | 
| void | HttpPostStandardRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)Remove the given FileUpload from the list of FileUploads to clean | 
| Modifier and Type | Method and Description | 
|---|---|
| void | HttpPostRequestEncoder. setBodyHttpDatas(List<InterfaceHttpData> datas)Set the Body HttpDatas list | 
Copyright © 2008–2015 The Netty Project. All rights reserved.