com.vmware.vim25.DailyTaskScheduler Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DailyTaskScheduler complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DailyTaskScheduler">
* <complexContent>
* <extension base="{urn:vim25}HourlyTaskScheduler">
* <sequence>
* <element name="hour" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DailyTaskScheduler", propOrder = {
"hour"
})
@XmlSeeAlso({
WeeklyTaskScheduler.class,
MonthlyTaskScheduler.class
})
public class DailyTaskScheduler
extends HourlyTaskScheduler
{
protected int hour;
/**
* Gets the value of the hour property.
*
*/
public int getHour() {
return hour;
}
/**
* Sets the value of the hour property.
*
*/
public void setHour(int value) {
this.hour = value;
}
}