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

com.heanbian.block.zabbix.api.ZabbixHostInterfaceGetRequest Maven / Gradle / Ivy

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

import java.util.HashMap;
import java.util.Map;

public class ZabbixHostInterfaceGetRequest {

	private Map params = new HashMap<>();

	public Map getParams() {
		return params;
	}

	public ZabbixHostInterfaceGetRequest setOutput(String output) {
		this.params.put("output", output);
		return this;
	}

	public ZabbixHostInterfaceGetRequest setHostids(String hostids) {
		this.params.put("hostids", hostids);
		return this;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy