![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.MonthlyByWeekdayTaskScheduler 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MonthlyByWeekdayTaskScheduler complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MonthlyByWeekdayTaskScheduler">
* <complexContent>
* <extension base="{urn:vim25}MonthlyTaskScheduler">
* <sequence>
* <element name="offset" type="{urn:vim25}WeekOfMonth"/>
* <element name="weekday" type="{urn:vim25}DayOfWeek"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MonthlyByWeekdayTaskScheduler", propOrder = {
"offset",
"weekday"
})
public class MonthlyByWeekdayTaskScheduler
extends MonthlyTaskScheduler
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected WeekOfMonth offset;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected DayOfWeek weekday;
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link WeekOfMonth }
*
*/
public WeekOfMonth getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link WeekOfMonth }
*
*/
public void setOffset(WeekOfMonth value) {
this.offset = value;
}
/**
* Gets the value of the weekday property.
*
* @return
* possible object is
* {@link DayOfWeek }
*
*/
public DayOfWeek getWeekday() {
return weekday;
}
/**
* Sets the value of the weekday property.
*
* @param value
* allowed object is
* {@link DayOfWeek }
*
*/
public void setWeekday(DayOfWeek value) {
this.weekday = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy