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

io.sphere.sdk.http.NingHttpClientAdapter Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.http;

import com.ning.http.client.AsyncHttpClient;

public interface NingHttpClientAdapter extends HttpClient {

    static HttpClient of() {
        return of(new AsyncHttpClient());
    }

    static HttpClient of(final AsyncHttpClient asyncHttpClient) {
        return NingHttpClientAdapterImpl.of(asyncHttpClient);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy