
io.github.cgi.zabbix.api.ZabbixApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zabbix-api Show documentation
Show all versions of zabbix-api Show documentation
This is simple Zabbix API Client for Java.
It's fork of original client https://github.com/hengyunabc/zabbix-api
but with small changes in java version, dependencies, api contract, tests.
The newest version!
package io.github.cgi.zabbix.api;
import org.codehaus.jackson.JsonNode;
public interface ZabbixApi {
void init();
void destroy();
String apiVersion();
JsonNode call(Request request);
JsonNode call(Request request, boolean needAuth );
boolean login(String user, String password);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy