com.heanbian.block.zabbix.api.ZabbixHostInterfaceUpdateRequest 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 ZabbixHostInterfaceUpdateRequest {
private String interfaceid;
private String port;
public ZabbixHostInterfaceUpdateRequest(String interfaceid, String port) {
this.interfaceid = interfaceid;
this.port = port;
}
public String getInterfaceid() {
return interfaceid;
}
public String getPort() {
return port;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy