001package io.freefair.spring.okhttp; 002 003/** 004 * @author Lars Grefer 005 * @deprecated Use {@link OkHttp3Configurer} instead. 006 */ 007@FunctionalInterface 008@Deprecated 009public interface Configurer<T> { 010 011 void configure(T object); 012}