All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.github.extras.OkHttp3Connector Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github.extras;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import okhttp3.OkHttpClient;
import okhttp3.OkUrlFactory;
import org.kohsuke.github.HttpConnector;
import org.kohsuke.github.extras.okhttp3.OkHttpGitHubConnector;

import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;

/**
 * {@link HttpConnector} for {@link OkHttpClient}.
 * 

* Unlike {@link #DEFAULT}, OkHttp does response caching. Making a conditional request against GitHubAPI and receiving a * 304 response does not count against the rate limit. See http://developer.github.com/v3/#conditional-requests * * @author Roberto Tyley * @author Kohsuke Kawaguchi * @see OkHttpGitHubConnector */ @Deprecated @SuppressFBWarnings(value = { "EI_EXPOSE_REP2" }, justification = "Deprecated") public class OkHttp3Connector implements HttpConnector { private final OkUrlFactory urlFactory; /** * Instantiates a new Ok http 3 connector. * * @param urlFactory * the url factory */ /* * @see org.kohsuke.github.extras.okhttp3.OkHttpGitHubConnector */ @Deprecated public OkHttp3Connector(OkUrlFactory urlFactory) { this.urlFactory = urlFactory; } public HttpURLConnection connect(URL url) throws IOException { return urlFactory.open(url); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy