001package io.freefair.spring.okhttp; 002 003import okhttp3.OkHttpClient; 004 005/** 006 * @author Lars Grefer 007 */ 008@FunctionalInterface 009public interface OkHttp3Configurer extends Configurer<OkHttpClient.Builder> { 010 011}