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

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

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

public class ZabbixRequest {

	private String jsonrpc;

	private String method;

	private T params;

	private int id;

	private String auth;

	public String getJsonrpc() {
		return jsonrpc;
	}

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

	public String getMethod() {
		return method;
	}

	public ZabbixRequest setMethod(String method) {
		this.method = method;
		return this;
	}

	public T getParams() {
		return params;
	}

	public ZabbixRequest setParams(T params) {
		this.params = params;
		return this;
	}

	public int getId() {
		return id;
	}

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

	public String getAuth() {
		return auth;
	}

	public ZabbixRequest setAuth(String auth) {
		this.auth = auth;
		return this;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy