Package | Description |
---|---|
tap | |
uws.config | |
uws.service | |
uws.service.request |
Modifier and Type | Class and Description |
---|---|
class |
TAPRequestParser
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
other: no parameter is returned
|
Modifier and Type | Method and Description |
---|---|
RequestParser |
TAPFactory.createRequestParser(UWSFileManager fileManager) |
Modifier and Type | Field and Description |
---|---|
protected java.lang.reflect.Constructor<? extends RequestParser> |
ConfigurableUWSFactory.constructorRequestParser
Constructor of the
RequestParser to create for the whole UWS service. |
Modifier and Type | Method and Description |
---|---|
RequestParser |
ConfigurableUWSFactory.createRequestParser(UWSFileManager fileManager) |
Modifier and Type | Field and Description |
---|---|
protected RequestParser |
UWSServlet.requestParser
Lets extract all parameters from an HTTP request, whatever is its content-type.
|
protected RequestParser |
UWSService.requestParser
Lets extract all parameters from an HTTP request, whatever is its content-type.
|
Modifier and Type | Method and Description |
---|---|
RequestParser |
UWSServlet.createRequestParser(UWSFileManager fileManager) |
RequestParser |
UWSFactory.createRequestParser(UWSFileManager manager)
Create a parser of HTTP requests.
|
RequestParser |
AbstractUWSFactory.createRequestParser(UWSFileManager fileManager) |
RequestParser |
UWSServlet.getRequestParser() |
RequestParser |
UWSService.getRequestParser() |
RequestParser |
UWS.getRequestParser()
Get its HTTP request parser.
|
Modifier and Type | Class and Description |
---|---|
class |
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 . |
class |
MultipartParser
Extract parameters encoded using the Content-type
multipart/form-data in an HttpServletRequest . |
class |
NoEncodingParser
This parser merely copies the whole HTTP request content inside a file.
|
class |
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
|
class |
XMLRequestParser
This parser aims to copy the full content of an HTTP request if it is
identified as an XML document.
|