query
Purpose
Query parameters to add to the request URL.Examples
jerseyRequestBuilder.post {
uri = "http://example.com"
query = [
"id": 123456
]
}Provides the Jersey client library and a builder to simplify use of the library.
|
(Quick Reference)
queryPurposeQuery parameters to add to the request URL.ExamplesjerseyRequestBuilder.post {
uri = "http://example.com"
query = [
"id": 123456
]
}DescriptionSets the key/value pairs to construct and add to the request URL. |
Jersey Request Builder |