1
0
Fork 0

Expose http client for configuration.

master
Kyle Chaplin 2013-08-21 17:09:40 -05:00
parent 7dd4035950
commit 322647a3dc
1 changed files with 9 additions and 0 deletions

View File

@ -312,5 +312,14 @@ public class RestClient {
return put(buildURI(path), payload);
}
/**
* Exposes the http client.
*
* @return the httpClient property
*/
public HttpClient getHttpClient(){
return this.httpClient;
}
}