This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/java/generated/BookType.java

325 lines
7.5 KiB
Java

//
// 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: 2016.10.12 at 12:03:44 AM WEST
//
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;
/**
* <p>Java class for BookType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="BookType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Barcodes" type="{}BarcodesType"/>
* &lt;element name="Cover" type="{}CoverType" minOccurs="0"/>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/>
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Scan" type="{}ScanType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </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")
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;
}
}