// // 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * * a checksum allows for resuming downloads, checking integrity, displaying freshness * * * <p>Java class for checksumType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="checksumType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="contentLength" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="sha1" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "checksumType") public class ChecksumType { @XmlAttribute(name = "lastModified") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModified; @XmlAttribute(name = "contentLength") protected Long contentLength; @XmlAttribute(name = "sha1") protected String sha1; /** * Gets the value of the lastModified property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModified() { return lastModified; } /** * Sets the value of the lastModified property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModified(XMLGregorianCalendar value) { this.lastModified = value; } /** * Gets the value of the contentLength property. * * @return * possible object is * {@link Long } * */ public Long getContentLength() { return contentLength; } /** * Sets the value of the contentLength property. * * @param value * allowed object is * {@link Long } * */ public void setContentLength(Long value) { this.contentLength = value; } /** * Gets the value of the sha1 property. * * @return * possible object is * {@link String } * */ public String getSha1() { return sha1; } /** * Sets the value of the sha1 property. * * @param value * allowed object is * {@link String } * */ public void setSha1(String value) { this.sha1 = value; } }