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

com.zabbix4j.media.MediaGetResponse Maven / Gradle / Ivy

The newest version!
package com.zabbix4j.media;

import com.zabbix4j.ZabbixApiResponse;

import java.util.List;

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

    public MediaGetResponse() {
        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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy