com.heanbian.block.zabbix.api.ZabbixHostGroupUpdateRequest 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 ZabbixHostGroupUpdateRequest {
private String groupid;
private String name;
public ZabbixHostGroupUpdateRequest(String groupid, String name) {
this.groupid = groupid;
this.name = name;
}
public String getName() {
return name;
}
public String getGroupid() {
return groupid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy