Update size of fields.
This commit is contained in:
@@ -2,16 +2,18 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -26,12 +28,12 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="page">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="255"/>
|
||||
* </restriction>
|
||||
@@ -54,12 +56,13 @@ public class EVPDType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "page")
|
||||
protected Integer page;
|
||||
protected Short page;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
@@ -88,16 +91,24 @@ public class EVPDType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -130,10 +141,10 @@ public class EVPDType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Integer getPage() {
|
||||
public Short getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
@@ -142,10 +153,10 @@ public class EVPDType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setPage(Integer value) {
|
||||
public void setPage(Short value) {
|
||||
this.page = value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user