com.quigley.zabbixj.sender.ZabbixSenderResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zabbixj-sender Show documentation
Show all versions of zabbixj-sender Show documentation
Zabbix/J is a framework for integrating Zabbix metrics support into Java applications.
The newest version!
package com.quigley.zabbixj.sender;
public class ZabbixSenderResponse {
public String getResponse() {
return response;
}
public void setResponse(String response) {
this.response = response;
}
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}
@Override
public String toString() {
return "ZabbixSenderResponse{" +
"response='" + response + '\'' +
", info='" + info + '\'' +
'}';
}
private String response;
private String info;
}