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

com.jack90john.common.utils.http.client.HttpClientResult Maven / Gradle / Ivy

Go to download

Provide self-made utils and integrate some useful utils like lombok, commons-lang3, commons-collections4 etc. into one

There is a newer version: 2.1.0.RELEASE
Show newest version
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