Modifier and Type | Field and Description |
---|---|
protected URIBuilder |
HTTPBuilder.defaultURI |
Modifier and Type | Method and Description |
---|---|
protected URIBuilder |
URIBuilder.addQueryParam(org.apache.http.NameValuePair nvp) |
URIBuilder |
URIBuilder.addQueryParam(String param,
Object value)
This will append a query parameter to the existing query string.
|
protected URIBuilder |
URIBuilder.addQueryParams(List<org.apache.http.NameValuePair> nvp) |
URIBuilder |
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.
|
URIBuilder |
HTTPBuilder.RequestConfigDelegate.getUri()
Use this object to manipulate parts of the request URI, like
query params and request path.
|
URIBuilder |
URIBuilder.removeQueryParam(String param)
Remove the given query parameter from this URI's query string.
|
URIBuilder |
URIBuilder.setFragment(String fragment)
The document fragment, without a preceeding '#'.
|
URIBuilder |
URIBuilder.setHost(String host)
Set the host portion of this URI.
|
URIBuilder |
URIBuilder.setPath(String path)
Set the path component of this URI.
|
URIBuilder |
URIBuilder.setPort(int port)
Set the port for this URI, or
-1 to unset the port. |
URIBuilder |
URIBuilder.setQuery(Map<?,?> params)
Set the query portion of the URI.
|
protected URIBuilder |
URIBuilder.setQueryNVP(List<org.apache.http.NameValuePair> nvp) |
URIBuilder |
URIBuilder.setRawQuery(String query)
Set the raw, already-escaped query string.
|
URIBuilder |
URIBuilder.setScheme(String scheme)
Set the URI scheme, AKA the 'protocol.' e.g.
|
URIBuilder |
URIBuilder.setUserInfo(String userInfo)
Set the userInfo portion of the URI, or
null if the URI
should have no user information. |
Copyright © 2008–2018. All rights reserved.