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

com.zabbix4j.lldrule.LLDRuleGetResponse Maven / Gradle / Ivy

There is a newer version: 0.1.9
Show newest version
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