![JAR search and dependency download from the Maven repository](/logo.png)
com.zabbix4j.lldrule.LLDRuleGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Zabbix4j Show documentation
Show all versions of Zabbix4j Show documentation
Zabbix API library for the Java language.
package com.zabbix4j.lldrule;
import com.zabbix4j.ZabbixApiResponse;
import com.zabbix4j.graph.GraphObject;
import com.zabbix4j.host.HostObject;
import com.zabbix4j.hostprototype.HostPrototypeObject;
import com.zabbix4j.item.ItemObject;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class LLDRuleGetResponse extends ZabbixApiResponse {
private List result;
public LLDRuleGetResponse() {
super();
}
public class Result extends LLDRuleObject {
private List hosts;
private List items;
private List graphs;
private List hostPrototypes;
/**
* Gets hosts.
*
* @return Value of hosts.
*/
public List getHosts() {
return hosts;
}
/**
* Sets new hosts.
*
* @param hosts New value of hosts.
*/
public void setHosts(List hosts) {
this.hosts = hosts;
}
/**
* Gets items.
*
* @return Value of items.
*/
public List getItems() {
return items;
}
/**
* Sets new items.
*
* @param items New value of items.
*/
public void setItems(List items) {
this.items = items;
}
/**
* Gets graphs.
*
* @return Value of graphs.
*/
public List getGraphs() {
return graphs;
}
/**
* Sets new graphs.
*
* @param graphs New value of graphs.
*/
public void setGraphs(List graphs) {
this.graphs = graphs;
}
/**
* Gets hostPrototypes.
*
* @return Value of hostPrototypes.
*/
public List getHostPrototypes() {
return hostPrototypes;
}
/**
* Sets new hostPrototypes.
*
* @param hostPrototypes New value of hostPrototypes.
*/
public void setHostPrototypes(List hostPrototypes) {
this.hostPrototypes = hostPrototypes;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy