Interface InterfaceHttpPostRequestDecoder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void cleanFiles()
      Clean all HttpDatas (on Disk) for the current request.
      InterfaceHttpData getBodyHttpData​(java.lang.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.
      java.util.List<InterfaceHttpData> getBodyHttpDatas()
      This method returns a List of all HttpDatas from body.
      If chunked, all chunks must have been offered using offer() method.
      java.util.List<InterfaceHttpData> getBodyHttpDatas​(java.lang.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.
      boolean hasNext()
      True if at current status, there is an available decoded InterfaceHttpData from the Body.
      boolean isMultipart()
      True if this request is a Multipart request
      InterfaceHttpData next()
      Returns the next available InterfaceHttpData or null if, at the time it is called, there is no more available InterfaceHttpData.
      void offer​(HttpChunk chunk)
      Initialized the internals from a new chunk
      void removeHttpDataFromClean​(InterfaceHttpData data)
      Remove the given FileUpload from the list of FileUploads to clean