![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HourlyTaskScheduler 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 HourlyTaskScheduler complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HourlyTaskScheduler">
* <complexContent>
* <extension base="{urn:vim25}RecurrentTaskScheduler">
* <sequence>
* <element name="minute" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HourlyTaskScheduler", propOrder = {
"minute"
})
@XmlSeeAlso({
DailyTaskScheduler.class
})
public class HourlyTaskScheduler
extends RecurrentTaskScheduler
{
protected int minute;
/**
* Gets the value of the minute property.
*
*/
public int getMinute() {
return minute;
}
/**
* Sets the value of the minute property.
*
*/
public void setMinute(int value) {
this.minute = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy