public class SyncHttpClient<E>
extends java.lang.Object
| Constructor and Description |
|---|
SyncHttpClient(java.lang.String baseUrl)
Creates a new client using a base Url without a timeout
|
SyncHttpClient(java.lang.String baseUrl,
long timeout)
Creates a new client using a base Url with a timeout in MS
|
SyncHttpClient(android.net.Uri baseUri)
Creates a new client using a base Uri without a timeout
|
SyncHttpClient(android.net.Uri baseUri,
long timeout)
Creates a new client using a base Uri with a timeout in MS
|
| Modifier and Type | Method and Description |
|---|---|
void |
cancel()
Cancells the current executor task
|
E |
delete(java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity deleteData,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
org.apache.http.HttpEntity deleteData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
org.apache.http.HttpEntity deleteData,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity deleteData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity deleteData,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
delete(java.lang.String path,
Processor<?> response)
Performs a DELETE request on the baseUri
|
E |
get(java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a GET request on the baseUri
|
E |
get(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a GET request on the baseUri
|
E |
get(Processor<?> response)
Performs a GET request on the baseUri
|
E |
get(java.lang.String path)
Performs a GET request on the baseUri
|
E |
get(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a GET request on the baseUri
|
E |
get(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a GET request on the baseUri
|
E |
get(java.lang.String path,
Processor<?> response)
Performs a GET request on the baseUri
|
ConnectionInfo |
getConnectionInfo()
Gets the connection info after a connection request has been made
|
E |
head(java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a HEAD request on the baseUri
|
E |
head(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a HEAD request on the baseUri
|
E |
head(Processor<?> response)
Performs a HEAD request on the baseUri
|
E |
head(java.lang.String path)
Performs a HEAD request on the baseUri
|
E |
head(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a HEAD request on the baseUri
|
E |
head(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a HEAD request on the baseUri
|
E |
head(java.lang.String path,
Processor<?> response)
Performs a HEAD request on the baseUri
|
E |
options(java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a OPTIONS request on the baseUri
|
E |
options(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a OPTIONS request on the baseUri
|
E |
options(Processor<?> response)
Performs a OPTIONS request on the baseUri
|
E |
options(java.lang.String path)
Performs a OPTIONS request on the baseUri
|
E |
options(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a OPTIONS request on the baseUri
|
E |
options(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a OPTIONS request on the baseUri
|
E |
options(java.lang.String path,
Processor<?> response)
Performs a OPTIONS request on the baseUri
|
E |
patch(org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(Processor<?> response)
Performs a PATCH request on the baseUr
|
E |
patch(java.lang.String path)
Performs a PATCH request on the baseUr
|
E |
patch(java.lang.String path,
org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.lang.String path,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a PATCH request on the baseUri
|
E |
patch(java.lang.String path,
Processor<?> response)
Performs a PATCH request on the baseUr
|
E |
post(org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path)
Performs a POST request on the baseUr
|
E |
post(java.lang.String path,
org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a POST request on the baseUri
|
E |
post(java.lang.String path,
Processor<?> response)
Performs a POST request on the baseUr
|
E |
put(org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(Processor<?> response)
Performs a PUT request on the baseUr
|
E |
put(java.lang.String path)
Performs a PUT request on the baseUr
|
E |
put(java.lang.String path,
org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.lang.String path,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
org.apache.http.HttpEntity postData,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
java.util.List<org.apache.http.Header> headers,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.lang.String path,
java.util.List<org.apache.http.NameValuePair> params,
Processor<?> response)
Performs a PUT request on the baseUri
|
E |
put(java.lang.String path,
Processor<?> response)
Performs a PUT request on the baseUr
|
void |
setAllowAllSsl(boolean allow)
Sets whether to allow all ssl, trusted or not
|
public SyncHttpClient(java.lang.String baseUrl)
baseUrl - The base connection urlpublic SyncHttpClient(android.net.Uri baseUri)
baseUri - The base connection uripublic SyncHttpClient(java.lang.String baseUrl,
long timeout)
baseUrl - The base connection urltimeout - The timeout in MSpublic SyncHttpClient(android.net.Uri baseUri,
long timeout)
baseUri - The base connection uritimeout - The timeout in MSpublic void cancel()
public E get(Processor<?> response)
response - The response handler for the requestpublic E get(java.lang.String path)
path - The path extended from the baseUripublic E get(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E get(java.util.List<org.apache.http.Header> headers, Processor<?> response)
headers - The request headers for the connectionresponse - The response handler for the requestpublic E get(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E get(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The request params for the connectionresponse - The response handler for the requestpublic E get(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E options(Processor<?> response)
response - The response handler for the requestpublic E options(java.lang.String path)
path - The path extended from the baseUripublic E options(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E options(java.util.List<org.apache.http.Header> headers, Processor<?> response)
headers - The request headers for the connectionresponse - The response handler for the requestpublic E options(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E options(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The request params for the connectionresponse - The response handler for the requestpublic E options(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E head(Processor<?> response)
response - The response handler for the requestpublic E head(java.lang.String path)
path - The path extended from the baseUripublic E head(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E head(java.util.List<org.apache.http.Header> headers, Processor<?> response)
headers - The request headers for the connectionresponse - The response handler for the requestpublic E head(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E head(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The request params for the connectionresponse - The response handler for the requestpublic E head(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E delete(Processor<?> response)
response - The response handler for the requestpublic E delete(java.lang.String path)
path - The path extended from the baseUripublic E delete(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E delete(java.util.List<org.apache.http.Header> headers, Processor<?> response)
headers - The request headers for the connectionresponse - The response handler for the requestpublic E delete(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E delete(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The request params for the connectionresponse - The response handler for the requestpublic E delete(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E delete(java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity deleteData, Processor<?> response)
params - The Query params to append to the baseUrideleteData - The delete data entity to delete to the serverresponse - The response handler for the requestpublic E delete(java.lang.String path, org.apache.http.HttpEntity deleteData, Processor<?> response)
path - The path extended from the baseUrideleteData - The delete data entity to delete to the serverresponse - The response handler for the requestpublic E delete(java.lang.String path, org.apache.http.HttpEntity deleteData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUrideleteData - The delete data entity to delete to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E delete(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity deleteData, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUrideleteData - The delete data entity to delete to the serverresponse - The response handler for the requestpublic E delete(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity deleteData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUrideleteData - The delete data entity to delete to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E post(Processor<?> response)
response - The response handler for the requestpublic E post(java.lang.String path)
path - The path extended from the baseUripublic E post(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E post(java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
params - The Query params to append to the baseUriresponse - The response handler for the requestpublic E post(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E post(org.apache.http.HttpEntity postData, Processor<?> response)
postData - The post data entity to post to the serverresponse - The response handler for the requestpublic E post(org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
postData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E post(java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, Processor<?> response)
params - The Query params to append to the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E post(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriresponse - The response handler for the requestpublic E post(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E post(java.lang.String path, org.apache.http.HttpEntity postData, Processor<?> response)
path - The path extended from the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E post(java.lang.String path, org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUripostData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E post(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E post(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUripostData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E put(Processor<?> response)
response - The response handler for the requestpublic E put(java.lang.String path)
path - The path extended from the baseUripublic E put(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E put(java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
params - The Query params to append to the baseUriresponse - The response handler for the requestpublic E put(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E put(org.apache.http.HttpEntity postData, Processor<?> response)
postData - The post data entity to post to the serverresponse - The response handler for the requestpublic E put(org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
postData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E put(java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, Processor<?> response)
params - The Query params to append to the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E put(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriresponse - The response handler for the requestpublic E put(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E put(java.lang.String path, org.apache.http.HttpEntity postData, Processor<?> response)
path - The path extended from the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E put(java.lang.String path, org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUripostData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E put(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E put(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUripostData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E patch(Processor<?> response)
response - The response handler for the requestpublic E patch(java.lang.String path)
path - The path extended from the baseUripublic E patch(java.lang.String path, Processor<?> response)
path - The path extended from the baseUriresponse - The response handler for the requestpublic E patch(java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
params - The Query params to append to the baseUriresponse - The response handler for the requestpublic E patch(java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
params - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E patch(org.apache.http.HttpEntity postData, Processor<?> response)
postData - The post data entity to post to the serverresponse - The response handler for the requestpublic E patch(org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
postData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E patch(java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, Processor<?> response)
params - The Query params to append to the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E patch(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriresponse - The response handler for the requestpublic E patch(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUriheaders - The request headers for the connectionresponse - The response handler for the requestpublic E patch(java.lang.String path, org.apache.http.HttpEntity postData, Processor<?> response)
path - The path extended from the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E patch(java.lang.String path, org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUripostData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic E patch(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUripostData - The post data entity to post to the serverresponse - The response handler for the requestpublic E patch(java.lang.String path, java.util.List<org.apache.http.NameValuePair> params, org.apache.http.HttpEntity postData, java.util.List<org.apache.http.Header> headers, Processor<?> response)
path - The path extended from the baseUriparams - The Query params to append to the baseUripostData - The post data entity to post to the serverheaders - The request headers for the connectionresponse - The response handler for the requestpublic void setAllowAllSsl(boolean allow)
allow - public ConnectionInfo getConnectionInfo()