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);
}
}