
com.vmware.vim.MonthlyByWeekdayTaskScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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:vim2}MonthlyTaskScheduler">
* <sequence>
* <element name="offset" type="{urn:vim2}WeekOfMonth"/>
* <element name="weekday" type="{urn:vim2}DayOfWeek"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MonthlyByWeekdayTaskScheduler", propOrder = {
"offset",
"weekday"
})
public class MonthlyByWeekdayTaskScheduler
extends MonthlyTaskScheduler
{
@XmlElement(required = true)
protected WeekOfMonth offset;
@XmlElement(required = true)
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