Support extension of TransportHttp

This allows subclasses to configure the HTTP connection (for example,
to add headers to the request).

Bug: 400724
Change-Id: I6f9d699e158a7b9d813c8fa8d273992a28994e41
Signed-off-by: Michael Nelson <michael.nelson@tasktop.com>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
This commit is contained in:
Michael Nelson 2013-08-26 09:35:48 -07:00 committed by Chris Aniszczyk
parent 40e8ba4186
commit 9e9f00df9e
1 changed files with 10 additions and 1 deletions

View File

@ -504,7 +504,16 @@ final HttpURLConnection httpOpen(URL u) throws IOException {
return httpOpen(METHOD_GET, u);
}
final HttpURLConnection httpOpen(String method, URL u) throws IOException {
/**
* Open an HTTP connection.
*
* @param method
* @param u
* @return the connection
* @throws IOException
*/
protected HttpURLConnection httpOpen(String method, URL u)
throws IOException {
final Proxy proxy = HttpSupport.proxyFor(proxySelector, u);
HttpURLConnection conn = (HttpURLConnection) u.openConnection(proxy);