// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2020.10.24 at 09:39:16 AM CEST // package net.ivoa.xml.uws.v1; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for ShortJobDescription complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ShortJobDescription">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="phase" type="{http://www.ivoa.net/xml/UWS/v1.0}ExecutionPhase"/>
 *         <element name="runId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ownerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="creationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://www.ivoa.net/xml/UWS/v1.0}reference"/>
 *       <attribute name="id" use="required" type="{http://www.ivoa.net/xml/UWS/v1.0}JobIdentifier" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ShortJobDescription", propOrder = { "phase", "runId", "ownerId", "creationTime" }) public class ShortJobDescription { @XmlElement(required = true) @XmlSchemaType(name = "string") protected ExecutionPhase phase; protected String runId; @XmlElement(required = true, nillable = true) protected String ownerId; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar creationTime; @XmlAttribute(name = "id", required = true) protected String id; @XmlAttribute(name = "type", namespace = "http://www.w3.org/1999/xlink") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; @XmlAttribute(name = "href", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") protected String href; /** * Gets the value of the phase property. * * @return * possible object is * {@link ExecutionPhase } * */ public ExecutionPhase getPhase() { return phase; } /** * Sets the value of the phase property. * * @param value * allowed object is * {@link ExecutionPhase } * */ public void setPhase(ExecutionPhase value) { this.phase = value; } /** * Gets the value of the runId property. * * @return * possible object is * {@link String } * */ public String getRunId() { return runId; } /** * Sets the value of the runId property. * * @param value * allowed object is * {@link String } * */ public void setRunId(String value) { this.runId = value; } /** * Gets the value of the ownerId property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public String getOwnerId() { return ownerId; } /** * Sets the value of the ownerId property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setOwnerId(String value) { this.ownerId = value; } /** * Gets the value of the creationTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreationTime() { return creationTime; } /** * Sets the value of the creationTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreationTime(XMLGregorianCalendar value) { this.creationTime = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { if (type == null) { return "simple"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } }