ru.tinkoff.kora.http.client.ok.OkHttpClientConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-client-ok Show documentation
Show all versions of http-client-ok Show documentation
Kora http-client-ok module
package ru.tinkoff.kora.http.client.ok;
import ru.tinkoff.kora.config.common.annotation.ConfigValueExtractor;
@ConfigValueExtractor
public interface OkHttpClientConfig {
default boolean followRedirects() {
return true;
}
default HttpVersion httpVersion() {
return HttpVersion.HTTP_1_1;
}
enum HttpVersion {
HTTP_1_1,
HTTP_2,
HTTP_3
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy