// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.11.10 at 06:09:13 AM WET // 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; /** *
Java class for BookType complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <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}int" minOccurs="0"/>
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Scan" type="{}ScanType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@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")
protected Integer pages;
@XmlElement(name = "PageSize")
protected String pageSize;
@XmlElement(name = "Scan", required = true)
protected ScanType scan;
/**
* Gets the value of the barcodes property.
*
* @return
* possible object is
* {@link BarcodesType }
*
*/
public BarcodesType getBarcodes() {
return barcodes;
}
/**
* Sets the value of the barcodes property.
*
* @param value
* allowed object is
* {@link BarcodesType }
*
*/
public void setBarcodes(BarcodesType value) {
this.barcodes = value;
}
/**
* Gets the value of the cover property.
*
* @return
* possible object is
* {@link CoverType }
*
*/
public CoverType getCover() {
return cover;
}
/**
* Sets the value of the cover property.
*
* @param value
* allowed object is
* {@link CoverType }
*
*/
public void setCover(CoverType value) {
this.cover = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the editorial property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEditorial() {
return editorial;
}
/**
* Sets the value of the editorial property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEditorial(String value) {
this.editorial = value;
}
/**
* Gets the value of the author property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthor() {
return author;
}
/**
* Sets the value of the author property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthor(String value) {
this.author = value;
}
/**
* Gets the value of the publicationDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPublicationDate() {
return publicationDate;
}
/**
* Sets the value of the publicationDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setPublicationDate(XMLGregorianCalendar value) {
this.publicationDate = value;
}
/**
* Gets the value of the language property.
*
* @return
* possible object is
* {@link LanguagesType }
*
*/
public LanguagesType getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link LanguagesType }
*
*/
public void setLanguage(LanguagesType value) {
this.language = value;
}
/**
* Gets the value of the pages property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPages() {
return pages;
}
/**
* Sets the value of the pages property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPages(Integer value) {
this.pages = value;
}
/**
* Gets the value of the pageSize property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPageSize() {
return pageSize;
}
/**
* Sets the value of the pageSize property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPageSize(String value) {
this.pageSize = value;
}
/**
* Gets the value of the scan property.
*
* @return
* possible object is
* {@link ScanType }
*
*/
public ScanType getScan() {
return scan;
}
/**
* Sets the value of the scan property.
*
* @param value
* allowed object is
* {@link ScanType }
*
*/
public void setScan(ScanType value) {
this.scan = value;
}
}