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

com.zabbix4j.script.ScriptUpdateResponse Maven / Gradle / Ivy

The newest version!
package com.zabbix4j.script;

import com.zabbix4j.ZabbixApiResponse;

import java.util.List;

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

    public ScriptUpdateResponse() {
        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 scriptids;

        /**
         * Gets scriptids.
         *
         * @return Value of scriptids.
         */
        public List getScriptids() {
            return scriptids;
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy