
com.zabbix4j.templatescreen.TemplateScreenDeleteRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Zabbix4j Show documentation
Show all versions of Zabbix4j Show documentation
Zabbix API library for the Java language.
The newest version!
package com.zabbix4j.templatescreen;
import com.zabbix4j.ZabbixApiRequest;
import java.util.ArrayList;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class TemplateScreenDeleteRequest extends ZabbixApiRequest {
private List params = new ArrayList();
public TemplateScreenDeleteRequest() {
setMethod("templatescreen.delete");
}
public void addTemplateScreenId(Integer id) {
params.add(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy