
com.yandex.disk.rest.OkHttpClientFactory Maven / Gradle / Ivy
/*
* Copyright (c) 2015 Yandex
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.yandex.disk.rest;
import com.squareup.okhttp.OkHttpClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.concurrent.TimeUnit;
public class OkHttpClientFactory {
private static final Logger logger = LoggerFactory.getLogger(OkHttpClientFactory.class);
private static final int CONNECT_TIMEOUT_MILLIS = 30 * 1000;
private static final int READ_TIMEOUT_MILLIS = 30 * 1000;
private static final int WRITE_TIMEOUT_MILLIS = 30 * 1000;
public static OkHttpClient makeClient() {
OkHttpClient client = new OkHttpClient();
if (logger.isDebugEnabled()) {
client.networkInterceptors().add(new LoggingInterceptor());
}
client.setConnectTimeout(CONNECT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
client.setReadTimeout(READ_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
client.setWriteTimeout(WRITE_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
client.setFollowSslRedirects(true);
client.setFollowRedirects(true);
return client;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy