Uses of Class
org.jboss.netty.handler.codec.http.multipart.HttpPostRequestDecoder.ErrorDataDecoderException
Packages that use HttpPostRequestDecoder.ErrorDataDecoderException
-
Uses of HttpPostRequestDecoder.ErrorDataDecoderException in org.jboss.netty.handler.codec.http.multipart
Methods in org.jboss.netty.handler.codec.http.multipart that throw HttpPostRequestDecoder.ErrorDataDecoderExceptionModifier and TypeMethodDescriptionprivate voidHttpPostMultipartRequestDecoder.addHttpData(InterfaceHttpData data) Utility function to add a new decoded dataprivate voidHttpPostStandardRequestDecoder.addHttpData(InterfaceHttpData data) Utility function to add a new decoded dataprivate static StringHttpPostStandardRequestDecoder.decodeAttribute(String s, Charset charset) Decode componentprivate InterfaceHttpDataHttpPostMultipartRequestDecoder.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 InterfaceHttpDataHttpPostMultipartRequestDecoder.findMultipartDelimiter(String delimiter, HttpPostRequestDecoder.MultiPartStatus dispositionStatus, HttpPostRequestDecoder.MultiPartStatus closeDelimiterStatus) Find the next Multipart Delimiterprivate InterfaceHttpDataHttpPostMultipartRequestDecoder.findMultipartDisposition()Find the next Dispositionprivate InterfaceHttpDataHttpPostMultipartRequestDecoder.getFileUpload(String delimiter) Get the FileUpload (new one or current one)protected static String[]HttpPostRequestDecoder.getMultipartDataBoundary(String contentType) Check from the request ContentType if this request is a Multipart request.static booleanHttpPostRequestDecoder.isMultipart(HttpRequest request) Check if the given request is a multipart requestprivate voidHttpPostMultipartRequestDecoder.loadFieldMultipart(String delimiter) Load the field value from a Multipart requestprivate voidHttpPostMultipartRequestDecoder.loadFieldMultipartStandard(String delimiter) Load the field value from a Multipart requestvoidvoidInitialized the internals from a new chunkvoidvoidInitialized the internals from a new chunkprivate voidHttpPostMultipartRequestDecoder.parseBody()This method will parse as much as possible data and fill the list and mapprivate voidHttpPostStandardRequestDecoder.parseBody()This method will parse as much as possible data and fill the list and mapprivate voidHttpPostStandardRequestDecoder.parseBodyAttributes()This method fill the map and list with as much Attribute as possible from Body in not Multipart mode.private voidHttpPostStandardRequestDecoder.parseBodyAttributesStandard()This method fill the map and list with as much Attribute as possible from Body in not Multipart mode.private voidHttpPostMultipartRequestDecoder.parseBodyMultipart()Parse the Body for multipartprivate voidHttpPostMultipartRequestDecoder.readFileUploadByteMultipart(String delimiter) Read a FileUpload data as Byte (Binary) and add the bytes directly to the FileUpload.private voidHttpPostMultipartRequestDecoder.readFileUploadByteMultipartStandard(String delimiter) Read a FileUpload data as Byte (Binary) and add the bytes directly to the FileUpload.private voidHttpPostStandardRequestDecoder.setFinalBuffer(ChannelBuffer buffer) private voidHttpPostMultipartRequestDecoder.setMultipart(String contentType) Set from the request ContentType the multipartDataBoundary and the possible charset.Constructors in org.jboss.netty.handler.codec.http.multipart that throw HttpPostRequestDecoder.ErrorDataDecoderExceptionModifierConstructorDescriptionHttpPostMultipartRequestDecoder(HttpDataFactory factory, HttpRequest request) HttpPostMultipartRequestDecoder(HttpDataFactory factory, HttpRequest request, Charset charset) HttpPostMultipartRequestDecoder(HttpDataFactory factory, HttpRequest request, Charset charset, int maxFields, int maxBufferedBytes) HttpPostRequestDecoder(HttpRequest request) HttpPostRequestDecoder(HttpRequest request, int maxFields, int maxBufferedBytes) HttpPostRequestDecoder(HttpDataFactory factory, HttpRequest request) HttpPostRequestDecoder(HttpDataFactory factory, HttpRequest request, Charset charset) HttpPostRequestDecoder(HttpDataFactory factory, HttpRequest request, Charset charset, int maxFields, int maxBufferedBytes) HttpPostStandardRequestDecoder(HttpDataFactory factory, HttpRequest request) HttpPostStandardRequestDecoder(HttpDataFactory factory, HttpRequest request, Charset charset) HttpPostStandardRequestDecoder(HttpDataFactory factory, HttpRequest request, Charset charset, int maxFields, int maxBufferedBytes)