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/MagazineType.java

327 lines
7.7 KiB
Java
Raw Normal View History

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>
// 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;
/**
* <p>Clase Java para MagazineType complex type.
2015-11-07 03:13:57 +00: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
* &lt;complexType name="MagazineType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
* &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="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* &lt;element name="Number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/>
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Scan" type="{}ScanType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
2015-11-07 03:13:57 +00:00
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MagazineType", propOrder = {
"barcodes",
"cover",
"name",
"editorial",
"publicationDate",
"number",
"language",
"pages",
"pageSize",
"scan"
})
public class MagazineType {
@XmlElement(name = "Barcodes")
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 = "PublicationDate")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar publicationDate;
@XmlElement(name = "Number")
2019-04-23 00:10:05 +01:00
@XmlSchemaType(name = "unsignedInt")
protected Long number;
2015-11-07 03:13:57 +00:00
@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")
protected ScanType scan;
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* Obtiene el valor de la propiedad number.
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 getNumber() {
2015-11-07 03:13:57 +00:00
return number;
}
/**
* Define el valor de la propiedad number.
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 setNumber(Long value) {
2015-11-07 03:13:57 +00:00
this.number = value;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
}