com.zabbix4j.map.MapGetResponse 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.
package com.zabbix4j.map;
import com.zabbix4j.ZabbixApiResponse;
import com.zabbix4j.iconmap.IconMapObject;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class MapGetResponse extends ZabbixApiResponse {
private List result;
public MapGetResponse() {
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;
}
public class Result extends MapObject {
private List selements;
private List links;
private List iconmap;
private List urls;
/**
* Gets selements.
*
* @return Value of selements.
*/
public List getSelements() {
return selements;
}
/**
* Sets new selements.
*
* @param selements New value of selements.
*/
public void setSelements(List selements) {
this.selements = selements;
}
/**
* Gets urls.
*
* @return Value of urls.
*/
public List getUrls() {
return urls;
}
/**
* Sets new urls.
*
* @param urls New value of urls.
*/
public void setUrls(List urls) {
this.urls = urls;
}
/**
* Gets links.
*
* @return Value of links.
*/
public List getLinks() {
return links;
}
/**
* Sets new links.
*
* @param links New value of links.
*/
public void setLinks(List links) {
this.links = links;
}
/**
* Gets iconmap.
*
* @return Value of iconmap.
*/
public List getIconmap() {
return iconmap;
}
/**
* Sets new iconmap.
*
* @param iconmap New value of iconmap.
*/
public void setIconmap(List iconmap) {
this.iconmap = iconmap;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy