2015-11-07 03:13:57 +00:00
|
|
|
//
|
2020-07-12 21:55:37 +01:00
|
|
|
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802
|
|
|
|
|
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
2017-06-08 21:53:29 +01:00
|
|
|
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
2020-07-12 22:44:22 +01:00
|
|
|
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
2015-11-07 03:13:57 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package generated;
|
|
|
|
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
|
|
import javax.xml.bind.annotation.XmlSchemaType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
import javax.xml.datatype.XMLGregorianCalendar;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>Clase Java para BookType complex type.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* <pre>
|
2020-07-12 21:55:37 +01:00
|
|
|
* <complexType name="BookType">
|
|
|
|
|
* <complexContent>
|
|
|
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
|
|
* <sequence>
|
|
|
|
|
* <element name="Barcodes" type="{}BarcodesType"/>
|
|
|
|
|
* <element name="Cover" type="{}CoverType" minOccurs="0"/>
|
|
|
|
|
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
|
|
|
* <element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
|
|
|
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
|
|
|
* <element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
|
|
|
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
|
|
|
|
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
|
|
|
|
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
|
|
|
* <element name="Scan" type="{}ScanType"/>
|
|
|
|
|
* </sequence>
|
|
|
|
|
* </restriction>
|
|
|
|
|
* </complexContent>
|
|
|
|
|
* </complexType>
|
2015-11-07 03:13:57 +00:00
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlType(name = "BookType", propOrder = {
|
|
|
|
|
"barcodes",
|
|
|
|
|
"cover",
|
|
|
|
|
"name",
|
|
|
|
|
"editorial",
|
|
|
|
|
"author",
|
|
|
|
|
"publicationDate",
|
|
|
|
|
"language",
|
|
|
|
|
"pages",
|
|
|
|
|
"pageSize",
|
|
|
|
|
"scan"
|
|
|
|
|
})
|
|
|
|
|
public class BookType {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "Barcodes", required = true)
|
|
|
|
|
protected BarcodesType barcodes;
|
|
|
|
|
@XmlElement(name = "Cover")
|
|
|
|
|
protected CoverType cover;
|
|
|
|
|
@XmlElement(name = "Name", required = true)
|
|
|
|
|
protected String name;
|
|
|
|
|
@XmlElement(name = "Editorial")
|
|
|
|
|
protected String editorial;
|
|
|
|
|
@XmlElement(name = "Author", required = true)
|
|
|
|
|
protected String author;
|
|
|
|
|
@XmlElement(name = "PublicationDate")
|
|
|
|
|
@XmlSchemaType(name = "date")
|
|
|
|
|
protected XMLGregorianCalendar publicationDate;
|
|
|
|
|
@XmlElement(name = "Language")
|
|
|
|
|
protected LanguagesType language;
|
|
|
|
|
@XmlElement(name = "Pages")
|
2019-04-23 00:10:05 +01:00
|
|
|
@XmlSchemaType(name = "unsignedInt")
|
|
|
|
|
protected Long pages;
|
2015-11-07 03:13:57 +00:00
|
|
|
@XmlElement(name = "PageSize")
|
|
|
|
|
protected String pageSize;
|
|
|
|
|
@XmlElement(name = "Scan", required = true)
|
|
|
|
|
protected ScanType scan;
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad barcodes.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link BarcodesType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public BarcodesType getBarcodes() {
|
|
|
|
|
return barcodes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad barcodes.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link BarcodesType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setBarcodes(BarcodesType value) {
|
|
|
|
|
this.barcodes = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad cover.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link CoverType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public CoverType getCover() {
|
|
|
|
|
return cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad cover.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link CoverType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setCover(CoverType value) {
|
|
|
|
|
this.cover = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad name.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getName() {
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad name.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setName(String value) {
|
|
|
|
|
this.name = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad editorial.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getEditorial() {
|
|
|
|
|
return editorial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad editorial.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setEditorial(String value) {
|
|
|
|
|
this.editorial = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad author.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getAuthor() {
|
|
|
|
|
return author;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad author.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setAuthor(String value) {
|
|
|
|
|
this.author = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad publicationDate.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link XMLGregorianCalendar }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public XMLGregorianCalendar getPublicationDate() {
|
|
|
|
|
return publicationDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad publicationDate.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link XMLGregorianCalendar }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setPublicationDate(XMLGregorianCalendar value) {
|
|
|
|
|
this.publicationDate = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad language.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link LanguagesType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public LanguagesType getLanguage() {
|
|
|
|
|
return language;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad language.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link LanguagesType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setLanguage(LanguagesType value) {
|
|
|
|
|
this.language = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad pages.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
2019-04-23 00:10:05 +01:00
|
|
|
* {@link Long }
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public Long getPages() {
|
2015-11-07 03:13:57 +00:00
|
|
|
return pages;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad pages.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
2019-04-23 00:10:05 +01:00
|
|
|
* {@link Long }
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setPages(Long value) {
|
2015-11-07 03:13:57 +00:00
|
|
|
this.pages = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad pageSize.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getPageSize() {
|
|
|
|
|
return pageSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad pageSize.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setPageSize(String value) {
|
|
|
|
|
this.pageSize = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad scan.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link ScanType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public ScanType getScan() {
|
|
|
|
|
return scan;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad scan.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link ScanType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setScan(ScanType value) {
|
|
|
|
|
this.scan = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|