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

com.zabbix4j.screen.ScreenDeleteRequest Maven / Gradle / Ivy

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

import com.zabbix4j.ZabbixApiRequest;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Suguru Yajima
 */
public class ScreenDeleteRequest extends ZabbixApiRequest {
    private List params = new ArrayList();

    public ScreenDeleteRequest() {
        setMethod("screen.delete");
    }

    public void addScreenId(Integer id) {
        params.add(id);
    }

    /**
     * Gets params.
     *
     * @return Value of params.
     */
    public List getParams() {
        return params;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy