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

cn.ipokerface.weixin.request.http.HttpResponse Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.request.http;

import java.io.InputStream;

/**
 * Created by       PokerFace
 * Create Date      2019-12-27.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public interface HttpResponse extends HttpMessage { /** * HTTP协议 * * @return */ HttpVersion getProtocol(); /** * 响应状态 * * @return */ HttpStatus getStatus(); /** * 响应内容 * * @return */ InputStream getBody(); /** * 响应内容 * * @return */ byte[] getContent(); /** * 释放资源 */ void close(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy