
com.zabbix4j.webscenario.HttpTestDeleteRequest 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.webscenario;
import com.zabbix4j.ZabbixApiRequest;
import java.util.ArrayList;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class HttpTestDeleteRequest extends ZabbixApiRequest {
private List params = new ArrayList();
public HttpTestDeleteRequest() {
setMethod("httptest.delete");
}
public void addHttpTestId(Integer id) {
params.add(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy