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

com.github.scribejava.httpclient.ahc.AhcProvider Maven / Gradle / Ivy

There is a newer version: 8.3.3
Show newest version
package com.github.scribejava.httpclient.ahc;

import com.github.scribejava.core.httpclient.HttpClientProvider;
import com.github.scribejava.core.httpclient.HttpClient;
import com.github.scribejava.core.httpclient.HttpClientConfig;

public class AhcProvider implements HttpClientProvider {

    @Override
    public HttpClient createClient(HttpClientConfig config) {
        if (config instanceof AhcHttpClientConfig) {
            return new AhcHttpClient((AhcHttpClientConfig) config);
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy