com.heanbian.block.zabbix.ZabbixRequest 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 ZabbixRequest {
private String jsonrpc;
private String method;
private T params;
private int id;
private String auth;
public String getJsonrpc() {
return jsonrpc;
}
public ZabbixRequest setJsonrpc(String jsonrpc) {
this.jsonrpc = jsonrpc;
return this;
}
public String getMethod() {
return method;
}
public ZabbixRequest setMethod(String method) {
this.method = method;
return this;
}
public T getParams() {
return params;
}
public ZabbixRequest setParams(T params) {
this.params = params;
return this;
}
public int getId() {
return id;
}
public ZabbixRequest setId(int id) {
this.id = id;
return this;
}
public String getAuth() {
return auth;
}
public ZabbixRequest setAuth(String auth) {
this.auth = auth;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy