
com.zabbix4j.templatescreenitem.TemplateScreenItemGetResponse 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.templatescreenitem;
import com.zabbix4j.ZabbixApiResponse;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class TemplateScreenItemGetResponse extends ZabbixApiResponse {
private List result;
public TemplateScreenItemGetResponse() {
super();
}
/**
* Gets result.
*
* @return Value of result.
*/
public List getResult() {
return result;
}
/**
* Sets new result.
*
* @param result New value of result.
*/
public void setResult(List result) {
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy