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

devutility.internal.net.HttpResponse Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
package devutility.internal.net;

public class HttpResponse {
	private int code;
	private String message;
	private byte[] bytes;
	private String response;

	public int getCode() {
		return code;
	}

	public void setCode(int code) {
		this.code = code;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

	public byte[] getBytes() {
		return bytes;
	}

	public void setBytes(byte[] bytes) {
		this.bytes = bytes;
	}

	public String getResponse() {
		return response;
	}

	public void setResponse(String response) {
		this.response = response;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy