// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.07.13 at 12:00:05 PM BRT // package com.ibm.rqm.xml.bind; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <extension base="{http://jazz.net/xmlns/alm/qm/v0.1/}reportableArtifact"> * <sequence> * <element name="webId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element ref="{http://purl.org/dc/elements/1.1/}title"/> * <element ref="{http://jazz.net/xmlns/alm/v0.1/}updated"/> * <element ref="{http://purl.org/dc/elements/1.1/}creator"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="nextTriggerDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <choice> * <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}buildschedule"/> * <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}onetimeschedule"/> * <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}dailyschedule"/> * <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}weeklyschedule"/> * </choice> * <element ref="{http://jazz.net/xmlns/alm/qm/v0.1/}scheduledjob"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "webId", "title", "updated", "creator", "description", "nextTriggerDate", "buildschedule", "onetimeschedule", "dailyschedule", "weeklyschedule", "scheduledjob" }) @XmlRootElement(name = "jobscheduler") public class Jobscheduler extends ReportableArtifact { protected Integer webId; @XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true) protected String title; @XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updated; @XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true) protected Creator creator; @XmlElement(required = true) protected String description; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar nextTriggerDate; protected Buildschedule buildschedule; protected Onetimeschedule onetimeschedule; protected Dailyschedule dailyschedule; protected Weeklyschedule weeklyschedule; @XmlElement(required = true) protected Scheduledjob scheduledjob; /** * Gets the value of the webId property. * * @return * possible object is * {@link Integer } * */ public Integer getWebId() { return webId; } /** * Sets the value of the webId property. * * @param value * allowed object is * {@link Integer } * */ public void setWebId(Integer value) { this.webId = value; } /** * [READ-ONLY] A name given to the job schedulerer. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * [READ-ONLY] XML dateTime of the last update of the job scheduler. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUpdated() { return updated; } /** * Sets the value of the updated property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setUpdated(XMLGregorianCalendar value) { this.updated = value; } /** * [READ-ONLY] [IMMUTABLE] The contributor who scheduled the job. * * @return * possible object is * {@link Creator } * */ public Creator getCreator() { return creator; } /** * Sets the value of the creator property. * * @param value * allowed object is * {@link Creator } * */ public void setCreator(Creator value) { this.creator = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the nextTriggerDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getNextTriggerDate() { return nextTriggerDate; } /** * Sets the value of the nextTriggerDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setNextTriggerDate(XMLGregorianCalendar value) { this.nextTriggerDate = value; } /** * [READ-ONLY] Schedule to be triggerd on build completion * * @return * possible object is * {@link Buildschedule } * */ public Buildschedule getBuildschedule() { return buildschedule; } /** * Sets the value of the buildschedule property. * * @param value * allowed object is * {@link Buildschedule } * */ public void setBuildschedule(Buildschedule value) { this.buildschedule = value; } /** * [READ-ONLY] One time schedule * * @return * possible object is * {@link Onetimeschedule } * */ public Onetimeschedule getOnetimeschedule() { return onetimeschedule; } /** * Sets the value of the onetimeschedule property. * * @param value * allowed object is * {@link Onetimeschedule } * */ public void setOnetimeschedule(Onetimeschedule value) { this.onetimeschedule = value; } /** * [READ-ONLY] Schedule to be triggerd once every day * * @return * possible object is * {@link Dailyschedule } * */ public Dailyschedule getDailyschedule() { return dailyschedule; } /** * Sets the value of the dailyschedule property. * * @param value * allowed object is * {@link Dailyschedule } * */ public void setDailyschedule(Dailyschedule value) { this.dailyschedule = value; } /** * [READ-ONLY] Schedule to be triggerd one of more time in each week. * * @return * possible object is * {@link Weeklyschedule } * */ public Weeklyschedule getWeeklyschedule() { return weeklyschedule; } /** * Sets the value of the weeklyschedule property. * * @param value * allowed object is * {@link Weeklyschedule } * */ public void setWeeklyschedule(Weeklyschedule value) { this.weeklyschedule = value; } /** * [READ-ONLY] [IMMUTABLE] This is a required property to create new Job Scheduler. * * @return * possible object is * {@link Scheduledjob } * */ public Scheduledjob getScheduledjob() { return scheduledjob; } /** * Sets the value of the scheduledjob property. * * @param value * allowed object is * {@link Scheduledjob } * */ public void setScheduledjob(Scheduledjob value) { this.scheduledjob = value; } }