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

cn.idea360.commons.http.Response Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package cn.idea360.commons.http;

import lombok.AllArgsConstructor;
import lombok.Data;

import java.io.Serializable;

/**
 * @author cuishiying
 */
@AllArgsConstructor
@Data
public class Response implements Serializable, AutoCloseable {

	/**
	 * http code
	 */
	private int statusCode;

	/**
	 * http code reason
	 */
	private String reasonPhrase;

	/**
	 * response data
	 */
	private String body;

	@Override
	public void close() throws Exception {

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy