![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ScheduledTaskSpec Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ScheduledTaskSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ScheduledTaskSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="scheduler" type="{urn:vim25}TaskScheduler"/>
* <element name="action" type="{urn:vim25}Action"/>
* <element name="notification" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ScheduledTaskSpec", propOrder = {
"name",
"description",
"enabled",
"scheduler",
"action",
"notification"
})
@XmlSeeAlso({
ScheduledTaskInfo.class
})
public class ScheduledTaskSpec
extends DynamicData
{
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String description;
protected boolean enabled;
@XmlElement(required = true)
protected TaskScheduler scheduler;
@XmlElement(required = true)
protected Action action;
protected String notification;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the enabled property.
*
*/
public boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
*/
public void setEnabled(boolean value) {
this.enabled = value;
}
/**
* Gets the value of the scheduler property.
*
* @return
* possible object is
* {@link TaskScheduler }
*
*/
public TaskScheduler getScheduler() {
return scheduler;
}
/**
* Sets the value of the scheduler property.
*
* @param value
* allowed object is
* {@link TaskScheduler }
*
*/
public void setScheduler(TaskScheduler value) {
this.scheduler = value;
}
/**
* Gets the value of the action property.
*
* @return
* possible object is
* {@link Action }
*
*/
public Action getAction() {
return action;
}
/**
* Sets the value of the action property.
*
* @param value
* allowed object is
* {@link Action }
*
*/
public void setAction(Action value) {
this.action = value;
}
/**
* Gets the value of the notification property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotification() {
return notification;
}
/**
* Sets the value of the notification property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotification(String value) {
this.notification = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy