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

com.zabbix4j.iconmap.IconMapGetResponse Maven / Gradle / Ivy

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

import com.zabbix4j.ZabbixApiResponse;

import java.util.List;

/**
 * @author Suguru Yajima
 */
public class IconMapGetResponse extends ZabbixApiResponse {

    public IconMapGetResponse() {
        super();
    }

    private List result;

    public class Result extends IconMapObject {

        private List mappings;

        /**
         * Gets mappings.
         *
         * @return Value of mappings.
         */
        public List getMappings() {
            return mappings;
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy