Corrected size field as long integer

This commit is contained in:
2015-11-10 06:09:41 +00:00
parent 51c097c04e
commit 148cb6181f
73 changed files with 169 additions and 258 deletions

View File

@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// 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.11.09 at 05:42:56 AM WET
// Generated on: 2015.11.10 at 06:09:13 AM WET
//
@@ -26,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;attribute name="page">
@@ -54,8 +54,8 @@ public class EVPDType {
@XmlElement(name = "Image", required = true)
protected String image;
@XmlElement(name = "Size", required = true)
protected String size;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlAttribute(name = "page")
@@ -88,24 +88,16 @@ public class EVPDType {
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSize() {
public long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSize(String value) {
public void setSize(long value) {
this.size = value;
}