checkmarx.wsdl.portal.ScheduleSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
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 ScheduleSettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ScheduleSettings">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Schedule" type="{http://Checkmarx.com}ScheduleType"/>
* <element name="ScheduledDays" type="{http://Checkmarx.com}ArrayOfDayOfWeek" minOccurs="0"/>
* <element name="Time" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
* <element name="StartSchedulingPeriod" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
* <element name="EndSchedulingPeriod" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
* <element name="SchedulingFrequency" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ScheduleSettings", propOrder = {
"schedule",
"scheduledDays",
"time",
"startSchedulingPeriod",
"endSchedulingPeriod",
"schedulingFrequency"
})
public class ScheduleSettings {
@XmlElement(name = "Schedule", required = true)
protected ScheduleType schedule;
@XmlElement(name = "ScheduledDays")
protected ArrayOfDayOfWeek scheduledDays;
@XmlElement(name = "Time")
protected CxDateTime time;
@XmlElement(name = "StartSchedulingPeriod")
protected CxDateTime startSchedulingPeriod;
@XmlElement(name = "EndSchedulingPeriod")
protected CxDateTime endSchedulingPeriod;
@XmlElement(name = "SchedulingFrequency")
protected int schedulingFrequency;
/**
* Gets the value of the schedule property.
*
* @return
* possible object is
* {@link ScheduleType }
*
*/
public ScheduleType getSchedule() {
return schedule;
}
/**
* Sets the value of the schedule property.
*
* @param value
* allowed object is
* {@link ScheduleType }
*
*/
public void setSchedule(ScheduleType value) {
this.schedule = value;
}
/**
* Gets the value of the scheduledDays property.
*
* @return
* possible object is
* {@link ArrayOfDayOfWeek }
*
*/
public ArrayOfDayOfWeek getScheduledDays() {
return scheduledDays;
}
/**
* Sets the value of the scheduledDays property.
*
* @param value
* allowed object is
* {@link ArrayOfDayOfWeek }
*
*/
public void setScheduledDays(ArrayOfDayOfWeek value) {
this.scheduledDays = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link CxDateTime }
*
*/
public CxDateTime getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link CxDateTime }
*
*/
public void setTime(CxDateTime value) {
this.time = value;
}
/**
* Gets the value of the startSchedulingPeriod property.
*
* @return
* possible object is
* {@link CxDateTime }
*
*/
public CxDateTime getStartSchedulingPeriod() {
return startSchedulingPeriod;
}
/**
* Sets the value of the startSchedulingPeriod property.
*
* @param value
* allowed object is
* {@link CxDateTime }
*
*/
public void setStartSchedulingPeriod(CxDateTime value) {
this.startSchedulingPeriod = value;
}
/**
* Gets the value of the endSchedulingPeriod property.
*
* @return
* possible object is
* {@link CxDateTime }
*
*/
public CxDateTime getEndSchedulingPeriod() {
return endSchedulingPeriod;
}
/**
* Sets the value of the endSchedulingPeriod property.
*
* @param value
* allowed object is
* {@link CxDateTime }
*
*/
public void setEndSchedulingPeriod(CxDateTime value) {
this.endSchedulingPeriod = value;
}
/**
* Gets the value of the schedulingFrequency property.
*
*/
public int getSchedulingFrequency() {
return schedulingFrequency;
}
/**
* Sets the value of the schedulingFrequency property.
*
*/
public void setSchedulingFrequency(int value) {
this.schedulingFrequency = value;
}
}