public interface HttpClient
Request instance with one of the newRequest()
methods. Then, populate the request with any additional options, and finally call one of its HTTP verb
methods to execute the request. See the Request class for finer control over the construction
of the HTTP requests to be executed.| Modifier and Type | Method and Description |
|---|---|
void |
flushCacheByUriPattern(java.util.regex.Pattern uriPattern)
Flush the cache entries by matching the URI using a regular expression
|
Request |
newRequest()
Constructs a new request.
|
Request |
newRequest(java.lang.String uri)
Constructs a new Request with the specified URI.
|
Request |
newRequest(java.lang.String uri,
java.lang.String contentType,
java.lang.String entity)
Constructs a new Request with the specified URI, contentType, and entity.
|
Request |
newRequest(java.net.URI uri)
Constructs a new Request with the specified URI.
|
Request |
newRequest(java.net.URI uri,
java.lang.String contentType,
java.lang.String entity)
Constructs a new Request with the specified URI, contentType, and entity.
|
Request newRequest()
Request newRequest(java.net.URI uri)
uri - The endpoint URI for this requestRequest newRequest(java.lang.String uri)
uri - The endpoint URI for this requestRequest newRequest(java.net.URI uri, java.lang.String contentType, java.lang.String entity)
uri - The endpoint URI for this requestcontentType - A textual IANA media typeentity - A string entity to send as this request's message bodyRequest newRequest(java.lang.String uri, java.lang.String contentType, java.lang.String entity)
uri - The endpoint URI for this requestcontentType - A textual IANA media typeentity - A string entity to send as this request's message bodyvoid flushCacheByUriPattern(java.util.regex.Pattern uriPattern)
uriPattern - The regular expression to matchCopyright © 2012-2013 Atlassian. All Rights Reserved.