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

com.xkcoding.http.support.AbstractHttp Maven / Gradle / Ivy

package com.xkcoding.http.support;

import com.xkcoding.http.config.HttpConfig;

/**
 * 

* HTTP 抽象类 *

* * @author yangkai.shen * @date Created in 2020-04-29 14:45 */ public abstract class AbstractHttp implements Http { protected HttpConfig httpConfig; public AbstractHttp(HttpConfig httpConfig) { this.httpConfig = httpConfig; } public void setHttpConfig(HttpConfig httpConfig) { this.httpConfig = httpConfig; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy