All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quigley.zabbixj.sender.ZabbixSenderResponse Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy