com.heanbian.block.zabbix.api.ZabbixMacro 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 ZabbixMacro {
private String macro;
private String value;
private String description;
public ZabbixMacro(String macro, String value) {
this(macro, value, null);
}
public ZabbixMacro(String macro, String value, String description) {
this.macro = macro;
this.value = value;
this.description = description;
}
public String getMacro() {
return macro;
}
public String getValue() {
return value;
}
public String getDescription() {
return description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy