com.heanbian.block.zabbix.api.ZabbixHostInterfaceDetails 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;
public class ZabbixHostInterfaceDetails {
private String version;
private String bulk;
private String community;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getBulk() {
return bulk;
}
public void setBulk(String bulk) {
this.bulk = bulk;
}
public String getCommunity() {
return community;
}
public void setCommunity(String community) {
this.community = community;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy