com.heanbian.block.zabbix.api.ZabbixHostInterfaceGetRequest 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.api;
import java.util.HashMap;
import java.util.Map;
public class ZabbixHostInterfaceGetRequest {
private Map params = new HashMap<>();
public Map getParams() {
return params;
}
public ZabbixHostInterfaceGetRequest setOutput(String output) {
this.params.put("output", output);
return this;
}
public ZabbixHostInterfaceGetRequest setHostids(String hostids) {
this.params.put("hostids", hostids);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy