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

com.zabbix4j.webscenario.HttpTestGetResponse Maven / Gradle / Ivy

package com.zabbix4j.webscenario;

import com.zabbix4j.ZabbixApiResponse;
import com.zabbix4j.host.HostObject;

import java.util.List;

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

    public HttpTestGetResponse() {
        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 WebScenarioObject {

        private List steps;
        private List hosts;

        /**
         * Gets steps.
         *
         * @return Value of steps.
         */
        public List getSteps() {
            return steps;
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy