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