![JAR search and dependency download from the Maven repository](/logo.png)
com.zabbix4j.screen.ScreenCreateRequest 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.screen;
import com.zabbix4j.ZabbixApiRequest;
import com.zabbix4j.screenitem.ScreenItemObject;
import java.util.List;
/**
* @author Suguru Yajima
*/
public class ScreenCreateRequest extends ZabbixApiRequest {
private Params params = new Params();
public ScreenCreateRequest() {
setMethod("screen.create");
}
/**
* Gets params.
*
* @return Value of params.
*/
public Params getParams() {
return params;
}
/**
* Sets new params.
*
* @param params New value of params.
*/
public void setParams(Params params) {
this.params = params;
}
public class Params extends ScreenObject {
private List screenitems;
/**
* Gets screenitems.
*
* @return Value of screenitems.
*/
public List getScreenitems() {
return screenitems;
}
/**
* Sets new screenitems.
*
* @param screenitems New value of screenitems.
*/
public void setScreenitems(List screenitems) {
this.screenitems = screenitems;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy