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

com.heanbian.block.zabbix.ZabbixResponse Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.heanbian.block.zabbix;

public class ZabbixResponse {

	private String jsonrpc;

	private ZabbixError error;

	private T result;

	private int id;

	public String getJsonrpc() {
		return jsonrpc;
	}

	public ZabbixResponse setJsonrpc(String jsonrpc) {
		this.jsonrpc = jsonrpc;
		return this;
	}

	public ZabbixError getError() {
		return error;
	}

	public ZabbixResponse setError(ZabbixError error) {
		this.error = error;
		return this;
	}

	public T getResult() {
		return result;
	}

	public ZabbixResponse setResult(T result) {
		this.result = result;
		return this;
	}

	public int getId() {
		return id;
	}

	public ZabbixResponse setId(int id) {
		this.id = id;
		return this;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy