io.freefair.spring.okhttp.OkHttp3Configurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okhttp-spring-boot-autoconfigure Show documentation
Show all versions of okhttp-spring-boot-autoconfigure Show documentation
OkHttp Spring Boot AutoConfigure
package io.freefair.spring.okhttp;
import okhttp3.OkHttpClient;
/**
* @author Lars Grefer
*/
@FunctionalInterface
public interface OkHttp3Configurer {
void configure(OkHttpClient.Builder object);
}