All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xkcoding.http.config.HttpConfig Maven / Gradle / Ivy

package com.xkcoding.http.config;

import com.xkcoding.http.constants.Constants;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.net.Proxy;

/**
 * 

* Http 配置类 *

* * @author yangkai.shen * @date Created in 2020-04-29 14:41 */ @Data @Builder @NoArgsConstructor @AllArgsConstructor public class HttpConfig { /** * 超时时长,单位毫秒 */ private int timeout = Constants.DEFAULT_TIMEOUT; /** * 代理配置 */ private Proxy proxy; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy