Uses of Class
org.jboss.netty.handler.codec.http.multipart.HttpPostRequestDecoder.MultiPartStatus
-
Packages that use HttpPostRequestDecoder.MultiPartStatus Package Description org.jboss.netty.handler.codec.http.multipart HTTP multipart support. -
-
Uses of HttpPostRequestDecoder.MultiPartStatus in org.jboss.netty.handler.codec.http.multipart
Fields in org.jboss.netty.handler.codec.http.multipart declared as HttpPostRequestDecoder.MultiPartStatus Modifier and Type Field Description private HttpPostRequestDecoder.MultiPartStatus
HttpPostMultipartRequestDecoder. currentStatus
Current statusprivate HttpPostRequestDecoder.MultiPartStatus
HttpPostStandardRequestDecoder. currentStatus
Current statusMethods in org.jboss.netty.handler.codec.http.multipart that return HttpPostRequestDecoder.MultiPartStatus Modifier and Type Method Description static HttpPostRequestDecoder.MultiPartStatus
HttpPostRequestDecoder.MultiPartStatus. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HttpPostRequestDecoder.MultiPartStatus[]
HttpPostRequestDecoder.MultiPartStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.netty.handler.codec.http.multipart with parameters of type HttpPostRequestDecoder.MultiPartStatus Modifier and Type Method Description private InterfaceHttpData
HttpPostMultipartRequestDecoder. decodeMultipart(HttpPostRequestDecoder.MultiPartStatus state)
Decode a multipart request by pieces
NOTSTARTED PREAMBLE (
(HEADERDELIMITER DISPOSITION (FIELD | FILEUPLOAD))*
(HEADERDELIMITER DISPOSITION MIXEDPREAMBLE
(MIXEDDELIMITER MIXEDDISPOSITION MIXEDFILEUPLOAD)+
MIXEDCLOSEDELIMITER)*
CLOSEDELIMITER)+ EPILOGUE
Inspired from HttpMessageDecoderprivate InterfaceHttpData
HttpPostMultipartRequestDecoder. findMultipartDelimiter(java.lang.String delimiter, HttpPostRequestDecoder.MultiPartStatus dispositionStatus, HttpPostRequestDecoder.MultiPartStatus closeDelimiterStatus)
Find the next Multipart Delimiter
-