Interface | Description |
---|---|
RequestParser |
This parser lets extract parameters from an
HttpServletRequest . |
Class | Description |
---|---|
FormEncodedParser |
Extract parameters encoded using the HTTP-GET method or the Content-type
application/x-www-form-urlencoded with the HTTP-POST or HTTP-PUT method in
an
HttpServletRequest . |
MultipartParser |
Extract parameters encoded using the Content-type
multipart/form-data in an HttpServletRequest . |
NoEncodingParser |
This parser merely copies the whole HTTP request content inside a file.
|
UploadFile |
This class lets represent a file submitted inline in an HTTP request.
|
UWSRequestParser |
This parser adapts the request parser to use in function of the request
content-type:
application/x-www-form-urlencoded:
FormEncodedParser
multipart/form-data: MultipartParser
(text|application)/(.+-)?xml: XMLRequestParser
(the whole request body is an XML document)
other: no parameter is returned
|
XMLRequestParser |
This parser aims to copy the full content of an HTTP request if it is
identified as an XML document.
|