// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // 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.08.06 at 11:30:49 AM CEST // package slash.navigation.download.queue.binding; 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.XmlType; /** * * a download refers to a downloadable, a file/map/theme, optionally fragments and * adds data to perform the download, resume, extraction, validation * * * <p>Java class for downloadType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="downloadType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="downloadable" type="{http://api.routeconverter.com/v1/schemas/download-queue}downloadableType"/> * </sequence> * <attribute name="description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="action" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="eTag" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="state" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="tempFile" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "downloadType", propOrder = { "downloadable" }) public class DownloadType { @XmlElement(required = true) protected DownloadableType downloadable; @XmlAttribute(name = "description", required = true) protected String description; @XmlAttribute(name = "url", required = true) protected String url; @XmlAttribute(name = "action", required = true) protected String action; @XmlAttribute(name = "eTag", required = true) protected String eTag; @XmlAttribute(name = "state", required = true) protected String state; @XmlAttribute(name = "tempFile", required = true) protected String tempFile; /** * Gets the value of the downloadable property. * * @return * possible object is * {@link DownloadableType } * */ public DownloadableType getDownloadable() { return downloadable; } /** * Sets the value of the downloadable property. * * @param value * allowed object is * {@link DownloadableType } * */ public void setDownloadable(DownloadableType value) { this.downloadable = 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 url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Gets the value of the action property. * * @return * possible object is * {@link String } * */ public String getAction() { return action; } /** * Sets the value of the action property. * * @param value * allowed object is * {@link String } * */ public void setAction(String value) { this.action = value; } /** * Gets the value of the eTag property. * * @return * possible object is * {@link String } * */ public String getETag() { return eTag; } /** * Sets the value of the eTag property. * * @param value * allowed object is * {@link String } * */ public void setETag(String value) { this.eTag = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the tempFile property. * * @return * possible object is * {@link String } * */ public String getTempFile() { return tempFile; } /** * Sets the value of the tempFile property. * * @param value * allowed object is * {@link String } * */ public void setTempFile(String value) { this.tempFile = value; } }