query
Purpose
Sets additional query parts of the URL.Examples
UriBuilder.build {
base = "http://example.com"
query = [
"foo": "bar"
]
}Provides the Jersey client library and a builder to simplify use of the library.
|
(Quick Reference)
queryPurposeSets additional query parts of the URL.ExamplesUriBuilder.build {
base = "http://example.com"
query = [
"foo": "bar"
]
}DescriptionThe query map consists of key/value pairs to set as the query part of the URL. Additional query parameters will add to the existing query parameters if the base url is used. |
Jersey Request Builder |