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

com.zabbix4j.screen.ScreenGetResponse Maven / Gradle / Ivy

The newest version!
package com.zabbix4j.screen;

import com.zabbix4j.ZabbixApiResponse;
import com.zabbix4j.screenitem.ScreenItemObject;

import java.util.List;

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

    public ScreenGetResponse() {
        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 ScreenObject {
        private List screenitems;

        /**
         * 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