![JAR search and dependency download from the Maven repository](/logo.png)
com.jack90john.common.utils.http.client.HttpClientResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-utils Show documentation
Show all versions of common-utils Show documentation
Provide self-made utils and integrate some useful utils like lombok, commons-lang3, commons-collections4 etc. into one
package com.jack90john.common.utils.http.client;
import lombok.Data;
import org.apache.http.Header;
/**
* {@link HttpClientUtils}返回结果
* @author jack
* @version 1.0.0
* @since 2.0.0.RELEASE
*/
@Data
public class HttpClientResult {
Integer status; //http状态码
String result; //返回结果
Header[] headers; //头信息
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy