devutility.internal.net.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Utilities for Java development
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