Example usage for org.eclipse.jgit.transport.http.apache HttpClientConnection HttpClientConnection

List of usage examples for org.eclipse.jgit.transport.http.apache HttpClientConnection HttpClientConnection

Introduction

In this page you can find the example usage for org.eclipse.jgit.transport.http.apache HttpClientConnection HttpClientConnection.

Prototype

public HttpClientConnection(String urlStr, Proxy proxy, HttpClient cl) throws MalformedURLException 

Source Link

Document

Constructor for HttpClientConnection.

Usage

From source file:org.springframework.cloud.config.server.environment.HttpClientConfigurableHttpConnectionFactory.java

License:Apache License

@Override
public HttpConnection create(URL url, Proxy proxy) throws IOException {
    return new HttpClientConnection(url.toString(), null, lookupHttpClientBuilder(url).build());
}