org.dsa.iot.dslink.util.http.HttpResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dslink Show documentation
Show all versions of dslink Show documentation
SDK for the IoT DSA protocol
package org.dsa.iot.dslink.util.http;
import io.netty.handler.codec.http.HttpResponseStatus;
/**
* @author Samuel Grenier
*/
public class HttpResp {
private HttpResponseStatus status;
private String body;
public HttpResponseStatus getStatus() {
return status;
}
public void setStatus(HttpResponseStatus status) {
this.status = status;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
}