Update size of fields.

This commit is contained in:
2019-04-23 00:10:05 +01:00
parent 47f3458897
commit 9e6c00e177
85 changed files with 3189 additions and 2731 deletions

View File

@@ -2,7 +2,7 @@
// 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
//
@@ -33,7 +33,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Scan" type="{}ScanType"/&gt;
* &lt;/sequence&gt;
@@ -75,7 +75,8 @@ public class BookType {
@XmlElement(name = "Language")
protected LanguagesType language;
@XmlElement(name = "Pages")
protected Integer pages;
@XmlSchemaType(name = "unsignedInt")
protected Long pages;
@XmlElement(name = "PageSize")
protected String pageSize;
@XmlElement(name = "Scan", required = true)
@@ -254,10 +255,10 @@ public class BookType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getPages() {
public Long getPages() {
return pages;
}
@@ -266,10 +267,10 @@ public class BookType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setPages(Integer value) {
public void setPages(Long value) {
this.pages = value;
}