程序包 | 说明 |
---|---|
io.netty.handler.codec.http.multipart |
HTTP multipart support.
|
限定符和类型 | 接口和说明 |
---|---|
interface |
Attribute
Attribute interface
|
interface |
FileUpload
FileUpload interface that could be in memory, on temporary file or any other implementations.
|
interface |
HttpData
Extended interface for InterfaceHttpData
|
限定符和类型 | 类和说明 |
---|---|
class |
AbstractDiskHttpData
Abstract Disk HttpData implementation
|
class |
AbstractHttpData
Abstract HttpData implementation
|
class |
AbstractMemoryHttpData
Abstract Memory HttpData implementation
|
class |
DiskAttribute
Disk implementation of Attributes
|
class |
DiskFileUpload
Disk FileUpload implementation that stores file into real files
|
class |
MemoryAttribute
Memory implementation of Attributes
|
class |
MemoryFileUpload
Default FileUpload implementation that stores file into memory.
|
class |
MixedAttribute
Mixed implementation using both in Memory and in File with a limit of size
|
class |
MixedFileUpload
Mixed implementation using both in Memory and in File with a limit of size
|
限定符和类型 | 方法和说明 |
---|---|
InterfaceHttpData |
InterfaceHttpPostRequestDecoder.getBodyHttpData(java.lang.String name)
This getMethod returns the first InterfaceHttpData with the given name from
body.
|
InterfaceHttpData |
HttpPostStandardRequestDecoder.getBodyHttpData(java.lang.String name)
This getMethod returns the first InterfaceHttpData with the given name from
body.
|
InterfaceHttpData |
HttpPostRequestDecoder.getBodyHttpData(java.lang.String name) |
InterfaceHttpData |
HttpPostMultipartRequestDecoder.getBodyHttpData(java.lang.String name)
This getMethod returns the first InterfaceHttpData with the given name from
body.
|
protected InterfaceHttpData |
HttpPostRequestDecoder.getFileUpload(java.lang.String delimiter)
Get the FileUpload (new one or current one)
|
protected InterfaceHttpData |
HttpPostMultipartRequestDecoder.getFileUpload(java.lang.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 |
HttpPostStandardRequestDecoder.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.
|
限定符和类型 | 方法和说明 |
---|---|
java.util.List<InterfaceHttpData> |
InterfaceHttpPostRequestDecoder.getBodyHttpDatas()
This getMethod returns a List of all HttpDatas from body.
|
java.util.List<InterfaceHttpData> |
HttpPostStandardRequestDecoder.getBodyHttpDatas()
This getMethod returns a List of all HttpDatas from body.
|
java.util.List<InterfaceHttpData> |
HttpPostRequestDecoder.getBodyHttpDatas() |
java.util.List<InterfaceHttpData> |
HttpPostMultipartRequestDecoder.getBodyHttpDatas()
This getMethod returns a List of all HttpDatas from body.
|
java.util.List<InterfaceHttpData> |
InterfaceHttpPostRequestDecoder.getBodyHttpDatas(java.lang.String name)
This getMethod returns a List of all HttpDatas with the given name from
body.
|
java.util.List<InterfaceHttpData> |
HttpPostStandardRequestDecoder.getBodyHttpDatas(java.lang.String name)
This getMethod returns a List of all HttpDatas with the given name from
body.
|
java.util.List<InterfaceHttpData> |
HttpPostRequestDecoder.getBodyHttpDatas(java.lang.String name) |
java.util.List<InterfaceHttpData> |
HttpPostMultipartRequestDecoder.getBodyHttpDatas(java.lang.String name)
This getMethod returns a List of all HttpDatas with the given name from
body.
|
java.util.List<InterfaceHttpData> |
HttpPostRequestEncoder.getBodyListAttributes()
This getMethod returns a List of all InterfaceHttpData from body part.
|
限定符和类型 | 方法和说明 |
---|---|
void |
HttpPostRequestEncoder.addBodyHttpData(InterfaceHttpData data)
Add the InterfaceHttpData to the Body list
|
protected void |
HttpPostStandardRequestDecoder.addHttpData(InterfaceHttpData data)
Utility function to add a new decoded data
|
protected void |
HttpPostRequestDecoder.addHttpData(InterfaceHttpData data)
Utility function to add a new decoded data
|
protected void |
HttpPostMultipartRequestDecoder.addHttpData(InterfaceHttpData data)
Utility function to add a new decoded data
|
int |
MixedFileUpload.compareTo(InterfaceHttpData o) |
int |
MixedAttribute.compareTo(InterfaceHttpData o) |
int |
MemoryFileUpload.compareTo(InterfaceHttpData o) |
int |
MemoryAttribute.compareTo(InterfaceHttpData other) |
int |
DiskFileUpload.compareTo(InterfaceHttpData o) |
int |
DiskAttribute.compareTo(InterfaceHttpData o) |
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 |
DefaultHttpDataFactory.removeHttpDataFromClean(HttpRequest request,
InterfaceHttpData data) |
void |
InterfaceHttpPostRequestDecoder.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
|
void |
HttpPostRequestDecoder.removeHttpDataFromClean(InterfaceHttpData data) |
void |
HttpPostMultipartRequestDecoder.removeHttpDataFromClean(InterfaceHttpData data)
Remove the given FileUpload from the list of FileUploads to clean
|
限定符和类型 | 方法和说明 |
---|---|
void |
HttpPostRequestEncoder.setBodyHttpDatas(java.util.List<InterfaceHttpData> datas)
Set the Body HttpDatas list
|