Uses of Class
groovyx.net.http.URIBuilder
-
Uses of URIBuilder in groovyx.net.http
Fields in groovyx.net.http declared as URIBuilderModifier and TypeFieldDescriptionprotected URIBuilder
HTTPBuilder.defaultURI
private URIBuilder
HttpURLClient.defaultURL
private URIBuilder
HTTPBuilder.RequestConfigDelegate.uri
Methods in groovyx.net.http that return URIBuilderModifier and TypeMethodDescriptionURIBuilder.addQueryParam
(String param, Object value) This will append a query parameter to the existing query string.protected URIBuilder
URIBuilder.addQueryParam
(org.apache.http.NameValuePair nvp) protected URIBuilder
URIBuilder.addQueryParams
(List<org.apache.http.NameValuePair> nvp) URIBuilder.addQueryParams
(Map<?, ?> params) Add these parameters to the URIBuilder's existing query string.protected URIBuilder
URIBuilder.clone()
Create a copy of this URIBuilder instance.HTTPBuilder.RequestConfigDelegate.getUri()
Use this object to manipulate parts of the request URI, like query params and request path.URIBuilder.removeQueryParam
(String param) Remove the given query parameter from this URI's query string.URIBuilder.setFragment
(String fragment) The document fragment, without a preceeding '#'.Set the host portion of this URI.Set the path component of this URI.URIBuilder.setPort
(int port) Set the port for this URI, or-1
to unset the port.Set the query portion of the URI.protected URIBuilder
URIBuilder.setQueryNVP
(List<org.apache.http.NameValuePair> nvp) URIBuilder.setRawQuery
(String query) Set the raw, already-escaped query string.Set the URI scheme, AKA the 'protocol.' e.g.URIBuilder.setUserInfo
(String userInfo) Set the userInfo portion of the URI, ornull
if the URI should have no user information.