com.heanbian.block.zabbix.ZabbixResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zabbix-client Show documentation
Show all versions of zabbix-client Show documentation
heanbian zabbix client component.
package com.heanbian.block.zabbix;
public class ZabbixResponse {
private String jsonrpc;
private ZabbixError error;
private T result;
private int id;
public String getJsonrpc() {
return jsonrpc;
}
public ZabbixResponse setJsonrpc(String jsonrpc) {
this.jsonrpc = jsonrpc;
return this;
}
public ZabbixError getError() {
return error;
}
public ZabbixResponse setError(ZabbixError error) {
this.error = error;
return this;
}
public T getResult() {
return result;
}
public ZabbixResponse setResult(T result) {
this.result = result;
return this;
}
public int getId() {
return id;
}
public ZabbixResponse setId(int id) {
this.id = id;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy