Example usage for org.eclipse.jgit.transport.http HttpConnectionFactory interface-usage

List of usage examples for org.eclipse.jgit.transport.http HttpConnectionFactory interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.transport.http HttpConnectionFactory interface-usage.

Usage

From source file jetbrains.buildServer.buildTriggers.vcs.git.SNIHttpClientConnectionFactory.java

public class SNIHttpClientConnectionFactory implements HttpConnectionFactory {

    public HttpConnection create(final URL url) throws IOException {
        return new SNIHttpClientConnection(url.toString());
    }

From source file jetbrains.buildServer.buildTriggers.vcs.git.TeamCityJDKHttpConnectionFactory.java

/**
 * Basically a copy of org.eclipse.jgit.transport.http.JDKHttpConnectionFactory
 * which gives ability to change used SSL protocol.
 */
public class TeamCityJDKHttpConnectionFactory implements HttpConnectionFactory {

From source file org.springframework.cloud.config.server.environment.ConfigurableHttpConnectionFactory.java

/**
 * @author Dylan Roberts
 */
public interface ConfigurableHttpConnectionFactory extends HttpConnectionFactory {

    void addConfiguration(MultipleJGitEnvironmentProperties environmentProperties) throws Exception;