
com.zabbix4j.template.TemplateObject 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.template;
/**
* @author Suguru Yajima
*/
public class TemplateObject {
private Integer templateid;
private String host;
private String name;
/**
* Gets name.
*
* @return Value of name.
*/
public String getName() {
return name;
}
/**
* Sets new name.
*
* @param name New value of name.
*/
public void setName(String name) {
this.name = name;
}
/**
* Gets host.
*
* @return Value of host.
*/
public String getHost() {
return host;
}
/**
* Sets new host.
*
* @param host New value of host.
*/
public void setHost(String host) {
this.host = host;
}
/**
* Gets templateid.
*
* @return Value of templateid.
*/
public Integer getTemplateid() {
return templateid;
}
/**
* Sets new templateid.
*
* @param templateid New value of templateid.
*/
public void setTemplateid(Integer templateid) {
this.templateid = templateid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy