![JAR search and dependency download from the Maven repository](/logo.png)
com.quigley.zabbixj.sender.ZabbixSenderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zabbixj-sender Show documentation
Show all versions of zabbixj-sender Show documentation
Zabbix/J is a framework for integrating Zabbix metrics support into Java applications.
The newest version!
package com.quigley.zabbixj.sender;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.ArrayList;
import java.util.List;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ZabbixSenderRequest {
public ZabbixSenderRequest() {
request = "sender data";
}
public String getRequest() {
return request;
}
public void setRequest(String request) {
this.request = request;
}
public List getData() {
return data;
}
public void setData(List data) {
this.data = data;
}
public void addData(ZabbixSenderDataItem item) {
if(data == null) {
data = new ArrayList();
}
data.add(item);
}
public Long getClock() {
return clock;
}
public void setClock(Long clock) {
this.clock = clock;
}
private String request;
private List data;
private Long clock;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy