Uses of Interface
org.jboss.netty.handler.codec.http.multipart.InterfaceHttpData
-
Packages that use InterfaceHttpData Package Description org.jboss.netty.handler.codec.http.multipart HTTP multipart support. -
-
Uses of InterfaceHttpData in org.jboss.netty.handler.codec.http.multipart
Subinterfaces of InterfaceHttpData in org.jboss.netty.handler.codec.http.multipart Modifier and Type Interface Description interface
Attribute
Attribute interfaceinterface
FileUpload
FileUpload interface that could be in memory, on temporary file or any other implementations.interface
HttpData
Extended interface for InterfaceHttpDataClasses in org.jboss.netty.handler.codec.http.multipart that implement InterfaceHttpData Modifier and Type Class Description class
AbstractDiskHttpData
Abstract Disk HttpData implementationclass
AbstractHttpData
Abstract HttpData implementationclass
AbstractMemoryHttpData
Abstract Memory HttpData implementationclass
DiskAttribute
Disk implementation of Attributesclass
DiskFileUpload
Disk FileUpload implementation that stores file into real filesclass
InternalAttribute
This Attribute is only for Encoder use to insert special command between object if needed (like Multipart Mixed mode)class
MemoryAttribute
Memory implementation of Attributesclass
MemoryFileUpload
Default FileUpload implementation that stores file into memory.
Warning: be aware of the memory limitation.class
MixedAttribute
Mixed implementation using both in Memory and in File with a limit of sizeclass
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 InterfaceHttpData Modifier and Type Method Description InterfaceHttpData
HttpPostMultipartRequestDecoder. getBodyHttpData(String name)
InterfaceHttpData
HttpPostRequestDecoder. getBodyHttpData(String name)
This method returns the first InterfaceHttpData with the given name from body.
If chunked, all chunks must have been offered using offer() method.InterfaceHttpData
HttpPostStandardRequestDecoder. getBodyHttpData(String name)
InterfaceHttpData
InterfaceHttpPostRequestDecoder. getBodyHttpData(String name)
This method returns the first InterfaceHttpData with the given name from body.
If chunked, all chunks must have been offered using offer() method.InterfaceHttpData
HttpPostMultipartRequestDecoder. next()
InterfaceHttpData
HttpPostRequestDecoder. next()
Returns the next available InterfaceHttpData or null if, at the time it is called, there is no more available InterfaceHttpData.InterfaceHttpData
HttpPostStandardRequestDecoder. next()
InterfaceHttpData
InterfaceHttpPostRequestDecoder. next()
Returns the next available InterfaceHttpData or null if, at the time it is called, there is no more available InterfaceHttpData.Methods in org.jboss.netty.handler.codec.http.multipart that return types with arguments of type InterfaceHttpData Modifier and Type Method Description List<InterfaceHttpData>
HttpPostMultipartRequestDecoder. getBodyHttpDatas()
List<InterfaceHttpData>
HttpPostMultipartRequestDecoder. getBodyHttpDatas(String name)
List<InterfaceHttpData>
HttpPostRequestDecoder. getBodyHttpDatas()
This method returns a List of all HttpDatas from body.
If chunked, all chunks must have been offered using offer() method.List<InterfaceHttpData>
HttpPostRequestDecoder. getBodyHttpDatas(String name)
This method returns a List of all HttpDatas with the given name from body.
If chunked, all chunks must have been offered using offer() method.List<InterfaceHttpData>
HttpPostStandardRequestDecoder. getBodyHttpDatas()
List<InterfaceHttpData>
HttpPostStandardRequestDecoder. getBodyHttpDatas(String name)
List<InterfaceHttpData>
InterfaceHttpPostRequestDecoder. getBodyHttpDatas()
This method returns a List of all HttpDatas from body.
If chunked, all chunks must have been offered using offer() method.List<InterfaceHttpData>
InterfaceHttpPostRequestDecoder. getBodyHttpDatas(String name)
This method returns a List of all HttpDatas with the given name from body.
If chunked, all chunks must have been offered using offer() method.List<InterfaceHttpData>
HttpPostRequestEncoder. getBodyListAttributes()
This method returns a List of all InterfaceHttpData from body part.Methods in org.jboss.netty.handler.codec.http.multipart with parameters of type InterfaceHttpData Modifier and Type Method Description void
HttpPostRequestEncoder. addBodyHttpData(InterfaceHttpData data)
Add the InterfaceHttpData to the Body listint
DiskAttribute. compareTo(InterfaceHttpData o)
int
DiskFileUpload. compareTo(InterfaceHttpData o)
int
InternalAttribute. compareTo(InterfaceHttpData o)
int
MemoryAttribute. compareTo(InterfaceHttpData other)
int
MemoryFileUpload. compareTo(InterfaceHttpData o)
int
MixedAttribute. compareTo(InterfaceHttpData o)
int
MixedFileUpload. compareTo(InterfaceHttpData o)
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
HttpPostMultipartRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)
void
HttpPostRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)
Remove the given FileUpload from the list of FileUploads to cleanvoid
HttpPostStandardRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)
void
InterfaceHttpPostRequestDecoder. removeHttpDataFromClean(InterfaceHttpData data)
Remove the given FileUpload from the list of FileUploads to cleanMethod parameters in org.jboss.netty.handler.codec.http.multipart with type arguments of type InterfaceHttpData Modifier and Type Method Description void
HttpPostRequestEncoder. setBodyHttpDatas(List<InterfaceHttpData> datas)
Set the Body HttpDatas list
-