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

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

There is a newer version: 0.1.9
Show newest version
package com.zabbix4j.webscenario;

import com.zabbix4j.ZabbixApiResponse;

import java.util.List;

/**
 * @author Suguru Yajima
 */
public class HttpTestDeleteResponse extends ZabbixApiResponse {
    private Result result;

    public HttpTestDeleteResponse() {
        super();
    }

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

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

    public class Result {
        private List httptestids;

        /**
         * Gets httptestids.
         *
         * @return Value of httptestids.
         */
        public List getHttptestids() {
            return httptestids;
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy