![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.MonthlyByDayTaskScheduler Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MonthlyByDayTaskScheduler complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MonthlyByDayTaskScheduler">
* <complexContent>
* <extension base="{urn:vim25}MonthlyTaskScheduler">
* <sequence>
* <element name="day" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MonthlyByDayTaskScheduler", propOrder = {
"day"
})
public class MonthlyByDayTaskScheduler
extends MonthlyTaskScheduler
{
protected int day;
/**
* Gets the value of the day property.
*
*/
public int getDay() {
return day;
}
/**
* Sets the value of the day property.
*
*/
public void setDay(int value) {
this.day = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy