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

com.zabbix4j.templatescreen.TemplateScreenGetResponse Maven / Gradle / Ivy

package com.zabbix4j.templatescreen;

import com.zabbix4j.ZabbixApiResponse;
import com.zabbix4j.host.HostObject;
import com.zabbix4j.screen.ScreenObject;
import com.zabbix4j.screenitem.ScreenItemObject;
import com.zabbix4j.template.TemplateObject;

import java.util.List;

/**
 * @author Suguru Yajima
 */
public class TemplateScreenGetResponse extends ZabbixApiResponse {
    private List result;

    public TemplateScreenGetResponse() {
        super();
    }

    /**
     * Gets result.
     *
     * @return Value of result.
     */
    public List getResult() {
        return result;
    }

    /**
     * Sets new result.
     *
     * @param result New value of result.
     */
    public void setResult(List result) {
        this.result = result;
    }

    public class Result extends TemplateScreenObject {

        private List screenitems;
        private List hosts;
        private List screns;
        private List templates;

        /**
         * 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 screns.
         *
         * @return Value of screns.
         */
        public List getScrens() {
            return screns;
        }

        /**
         * Sets new screns.
         *
         * @param screns New value of screns.
         */
        public void setScrens(List screns) {
            this.screns = screns;
        }

        /**
         * Gets templates.
         *
         * @return Value of templates.
         */
        public List getTemplates() {
            return templates;
        }

        /**
         * Sets new templates.
         *
         * @param templates New value of templates.
         */
        public void setTemplates(List templates) {
            this.templates = templates;
        }

        /**
         * Gets screenitems.
         *
         * @return Value of screenitems.
         */
        public List getScreenitems() {
            return screenitems;
        }

        /**
         * Sets new screenitems.
         *
         * @param screenitems New value of screenitems.
         */
        public void setScreenitems(List screenitems) {
            this.screenitems = screenitems;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy