![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.TaskScheduler Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for TaskScheduler complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TaskScheduler">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="activeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="expireTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TaskScheduler", propOrder = {
"activeTime",
"expireTime"
})
@XmlSeeAlso({
AfterStartupTaskScheduler.class,
OnceTaskScheduler.class,
RecurrentTaskScheduler.class
})
public class TaskScheduler
extends DynamicData
{
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar activeTime;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar expireTime;
/**
* Gets the value of the activeTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getActiveTime() {
return activeTime;
}
/**
* Sets the value of the activeTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setActiveTime(XMLGregorianCalendar value) {
this.activeTime = value;
}
/**
* Gets the value of the expireTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpireTime() {
return expireTime;
}
/**
* Sets the value of the expireTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpireTime(XMLGregorianCalendar value) {
this.expireTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy