mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Moved submodules to directories.
This commit is contained in:
71
CICMMetadata/java/generated/ATAType.java
Normal file
71
CICMMetadata/java/generated/ATAType.java
Normal file
@@ -0,0 +1,71 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Contains ATA/ATAPI device information
|
||||
*
|
||||
* <p>Clase Java para ATAType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ATAType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Identify" type="{}DumpType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ATAType", propOrder = {
|
||||
"identify"
|
||||
})
|
||||
public class ATAType {
|
||||
|
||||
@XmlElement(name = "Identify", required = true)
|
||||
protected DumpType identify;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad identify.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getIdentify() {
|
||||
return identify;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad identify.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setIdentify(DumpType value) {
|
||||
this.identify = value;
|
||||
}
|
||||
|
||||
}
|
||||
390
CICMMetadata/java/generated/AdvertisementType.java
Normal file
390
CICMMetadata/java/generated/AdvertisementType.java
Normal file
@@ -0,0 +1,390 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para AdvertisementType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AdvertisementType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="File" type="{}FileType"/>
|
||||
* <element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Frames" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Duration" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||
* <element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="AudioTrack" type="{}AudioTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VideoTrack" type="{}VideoTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="SubtitleTrack" type="{}SubtitleTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Recording" type="{}RecordingType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AdvertisementType", propOrder = {
|
||||
"manufacturer",
|
||||
"product",
|
||||
"file",
|
||||
"fileSize",
|
||||
"frames",
|
||||
"duration",
|
||||
"meanFrameRate",
|
||||
"checksums",
|
||||
"audioTrack",
|
||||
"videoTrack",
|
||||
"subtitleTrack",
|
||||
"recording"
|
||||
})
|
||||
public class AdvertisementType {
|
||||
|
||||
@XmlElement(name = "Manufacturer", required = true)
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Product", required = true)
|
||||
protected String product;
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected FileType file;
|
||||
@XmlElement(name = "FileSize", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger fileSize;
|
||||
@XmlElement(name = "Frames")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger frames;
|
||||
@XmlElement(name = "Duration")
|
||||
protected double duration;
|
||||
@XmlElement(name = "MeanFrameRate")
|
||||
protected Float meanFrameRate;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "AudioTrack")
|
||||
protected List<AudioTracksType> audioTrack;
|
||||
@XmlElement(name = "VideoTrack")
|
||||
protected List<VideoTracksType> videoTrack;
|
||||
@XmlElement(name = "SubtitleTrack")
|
||||
protected List<SubtitleTracksType> subtitleTrack;
|
||||
@XmlElement(name = "Recording")
|
||||
protected RecordingType recording;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad product.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getProduct() {
|
||||
return product;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad product.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setProduct(String value) {
|
||||
this.product = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad file.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad file.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public void setFile(FileType value) {
|
||||
this.file = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad fileSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getFileSize() {
|
||||
return fileSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad fileSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFileSize(BigInteger value) {
|
||||
this.fileSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad frames.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getFrames() {
|
||||
return frames;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad frames.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFrames(BigInteger value) {
|
||||
this.frames = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad duration.
|
||||
*
|
||||
*/
|
||||
public double getDuration() {
|
||||
return duration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad duration.
|
||||
*
|
||||
*/
|
||||
public void setDuration(double value) {
|
||||
this.duration = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad meanFrameRate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Float }
|
||||
*
|
||||
*/
|
||||
public Float getMeanFrameRate() {
|
||||
return meanFrameRate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad meanFrameRate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Float }
|
||||
*
|
||||
*/
|
||||
public void setMeanFrameRate(Float value) {
|
||||
this.meanFrameRate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the audioTrack property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the audioTrack property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAudioTrack().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AudioTracksType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AudioTracksType> getAudioTrack() {
|
||||
if (audioTrack == null) {
|
||||
audioTrack = new ArrayList<AudioTracksType>();
|
||||
}
|
||||
return this.audioTrack;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the videoTrack property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the videoTrack property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVideoTrack().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link VideoTracksType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<VideoTracksType> getVideoTrack() {
|
||||
if (videoTrack == null) {
|
||||
videoTrack = new ArrayList<VideoTracksType>();
|
||||
}
|
||||
return this.videoTrack;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the subtitleTrack property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the subtitleTrack property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSubtitleTrack().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link SubtitleTracksType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<SubtitleTracksType> getSubtitleTrack() {
|
||||
if (subtitleTrack == null) {
|
||||
subtitleTrack = new ArrayList<SubtitleTracksType>();
|
||||
}
|
||||
return this.subtitleTrack;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad recording.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordingType }
|
||||
*
|
||||
*/
|
||||
public RecordingType getRecording() {
|
||||
return recording;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad recording.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordingType }
|
||||
*
|
||||
*/
|
||||
public void setRecording(RecordingType value) {
|
||||
this.recording = value;
|
||||
}
|
||||
|
||||
}
|
||||
156
CICMMetadata/java/generated/ArchitecturesType.java
Normal file
156
CICMMetadata/java/generated/ArchitecturesType.java
Normal file
@@ -0,0 +1,156 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* CPU architectures this set is intended to be run on
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para ArchitecturesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ArchitecturesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Architecture" maxOccurs="unbounded">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="4004"/>
|
||||
* <enumeration value="4040"/>
|
||||
* <enumeration value="6502"/>
|
||||
* <enumeration value="65816"/>
|
||||
* <enumeration value="8008"/>
|
||||
* <enumeration value="8051"/>
|
||||
* <enumeration value="8080"/>
|
||||
* <enumeration value="8085"/>
|
||||
* <enumeration value="aarch64"/>
|
||||
* <enumeration value="am29000"/>
|
||||
* <enumeration value="amd64"/>
|
||||
* <enumeration value="apx432"/>
|
||||
* <enumeration value="arm"/>
|
||||
* <enumeration value="avr"/>
|
||||
* <enumeration value="avr32"/>
|
||||
* <enumeration value="axp"/>
|
||||
* <enumeration value="clipper"/>
|
||||
* <enumeration value="cray"/>
|
||||
* <enumeration value="esa390"/>
|
||||
* <enumeration value="hobbit"/>
|
||||
* <enumeration value="i86"/>
|
||||
* <enumeration value="i860"/>
|
||||
* <enumeration value="i960"/>
|
||||
* <enumeration value="ia32"/>
|
||||
* <enumeration value="ia64"/>
|
||||
* <enumeration value="m56k"/>
|
||||
* <enumeration value="m6800"/>
|
||||
* <enumeration value="m6801"/>
|
||||
* <enumeration value="m6805"/>
|
||||
* <enumeration value="m6809"/>
|
||||
* <enumeration value="m68k"/>
|
||||
* <enumeration value="m88k"/>
|
||||
* <enumeration value="mcs41"/>
|
||||
* <enumeration value="mcs48"/>
|
||||
* <enumeration value="mips32"/>
|
||||
* <enumeration value="mips64"/>
|
||||
* <enumeration value="msp430"/>
|
||||
* <enumeration value="nios2"/>
|
||||
* <enumeration value="openrisc"/>
|
||||
* <enumeration value="parisc"/>
|
||||
* <enumeration value="pdp1"/>
|
||||
* <enumeration value="pdp10"/>
|
||||
* <enumeration value="pdp11"/>
|
||||
* <enumeration value="pdp7"/>
|
||||
* <enumeration value="pdp8"/>
|
||||
* <enumeration value="pic"/>
|
||||
* <enumeration value="power"/>
|
||||
* <enumeration value="ppc"/>
|
||||
* <enumeration value="ppc64"/>
|
||||
* <enumeration value="prism"/>
|
||||
* <enumeration value="renesasrx"/>
|
||||
* <enumeration value="riscv"/>
|
||||
* <enumeration value="s360"/>
|
||||
* <enumeration value="s370"/>
|
||||
* <enumeration value="sh"/>
|
||||
* <enumeration value="sh1"/>
|
||||
* <enumeration value="sh2"/>
|
||||
* <enumeration value="sh3"/>
|
||||
* <enumeration value="sh4"/>
|
||||
* <enumeration value="sh5"/>
|
||||
* <enumeration value="sh64"/>
|
||||
* <enumeration value="sparc"/>
|
||||
* <enumeration value="sparc64"/>
|
||||
* <enumeration value="transputer"/>
|
||||
* <enumeration value="vax"/>
|
||||
* <enumeration value="we32000"/>
|
||||
* <enumeration value="x32"/>
|
||||
* <enumeration value="z80"/>
|
||||
* <enumeration value="z800"/>
|
||||
* <enumeration value="z8000"/>
|
||||
* <enumeration value="z80000"/>
|
||||
* <enumeration value="zarch"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ArchitecturesType", propOrder = {
|
||||
"architecture"
|
||||
})
|
||||
public class ArchitecturesType {
|
||||
|
||||
@XmlElement(name = "Architecture", required = true)
|
||||
protected List<String> architecture;
|
||||
|
||||
/**
|
||||
* Gets the value of the architecture property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the architecture property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getArchitecture().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getArchitecture() {
|
||||
if (architecture == null) {
|
||||
architecture = new ArrayList<String>();
|
||||
}
|
||||
return this.architecture;
|
||||
}
|
||||
|
||||
}
|
||||
186
CICMMetadata/java/generated/AudioBlockType.java
Normal file
186
CICMMetadata/java/generated/AudioBlockType.java
Normal file
@@ -0,0 +1,186 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about "blocks" in audio based media
|
||||
*
|
||||
* <p>Clase Java para AudioBlockType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AudioBlockType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AudioBlockType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"accoustID",
|
||||
"checksums",
|
||||
"format"
|
||||
})
|
||||
public class AudioBlockType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "AccoustID", required = true)
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Format")
|
||||
protected String format;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad accoustID.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccoustID() {
|
||||
return accoustID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad accoustID.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccoustID(String value) {
|
||||
this.accoustID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad format.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad format.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFormat(String value) {
|
||||
this.format = value;
|
||||
}
|
||||
|
||||
}
|
||||
447
CICMMetadata/java/generated/AudioMediaType.java
Normal file
447
CICMMetadata/java/generated/AudioMediaType.java
Normal file
@@ -0,0 +1,447 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Describes a dump of a media that is stored in an audio device (like a ZX Spectrum
|
||||
* cassette)
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para AudioMediaType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AudioMediaType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Sequence" type="{}SequenceType"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Block" type="{}AudioBlockType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Dimensions" type="{}DimensionsType"/>
|
||||
* <element name="Scans" type="{}ScansType" minOccurs="0"/>
|
||||
* <element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AudioMediaType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums",
|
||||
"sequence",
|
||||
"partNumber",
|
||||
"serialNumber",
|
||||
"manufacturer",
|
||||
"model",
|
||||
"accoustID",
|
||||
"block",
|
||||
"copyProtection",
|
||||
"dimensions",
|
||||
"scans",
|
||||
"dumpHardwareArray"
|
||||
})
|
||||
public class AudioMediaType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
protected SequenceType sequence;
|
||||
@XmlElement(name = "PartNumber")
|
||||
protected String partNumber;
|
||||
@XmlElement(name = "SerialNumber")
|
||||
protected String serialNumber;
|
||||
@XmlElement(name = "Manufacturer")
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model")
|
||||
protected String model;
|
||||
@XmlElement(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Block")
|
||||
protected List<AudioBlockType> block;
|
||||
@XmlElement(name = "CopyProtection")
|
||||
protected String copyProtection;
|
||||
@XmlElement(name = "Dimensions", required = true)
|
||||
protected DimensionsType dimensions;
|
||||
@XmlElement(name = "Scans")
|
||||
protected ScansType scans;
|
||||
@XmlElement(name = "DumpHardwareArray")
|
||||
protected DumpHardwareArrayType dumpHardwareArray;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SequenceType }
|
||||
*
|
||||
*/
|
||||
public SequenceType getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SequenceType }
|
||||
*
|
||||
*/
|
||||
public void setSequence(SequenceType value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad partNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPartNumber() {
|
||||
return partNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad partNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPartNumber(String value) {
|
||||
this.partNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad serialNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerialNumber() {
|
||||
return serialNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad serialNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerialNumber(String value) {
|
||||
this.serialNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad model.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad model.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setModel(String value) {
|
||||
this.model = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad accoustID.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccoustID() {
|
||||
return accoustID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad accoustID.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccoustID(String value) {
|
||||
this.accoustID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the block property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the block property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBlock().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AudioBlockType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AudioBlockType> getBlock() {
|
||||
if (block == null) {
|
||||
block = new ArrayList<AudioBlockType>();
|
||||
}
|
||||
return this.block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad copyProtection.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCopyProtection() {
|
||||
return copyProtection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad copyProtection.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCopyProtection(String value) {
|
||||
this.copyProtection = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dimensions.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public DimensionsType getDimensions() {
|
||||
return dimensions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dimensions.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public void setDimensions(DimensionsType value) {
|
||||
this.dimensions = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scans.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType getScans() {
|
||||
return scans;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scans.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public void setScans(ScansType value) {
|
||||
this.scans = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dumpHardwareArray.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareArrayType getDumpHardwareArray() {
|
||||
return dumpHardwareArray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dumpHardwareArray.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public void setDumpHardwareArray(DumpHardwareArrayType value) {
|
||||
this.dumpHardwareArray = value;
|
||||
}
|
||||
|
||||
}
|
||||
208
CICMMetadata/java/generated/AudioTracksType.java
Normal file
208
CICMMetadata/java/generated/AudioTracksType.java
Normal file
@@ -0,0 +1,208 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para AudioTracksType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AudioTracksType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Languages" type="{}LanguagesType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
|
||||
* <attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AudioTracksType", propOrder = {
|
||||
"languages"
|
||||
})
|
||||
public class AudioTracksType {
|
||||
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
@XmlAttribute(name = "Channels", required = true)
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long channels;
|
||||
@XmlAttribute(name = "SampleRate", required = true)
|
||||
protected double sampleRate;
|
||||
@XmlAttribute(name = "MeanBitrate", required = true)
|
||||
protected long meanBitrate;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad languages.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguages() {
|
||||
return languages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad languages.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguages(LanguagesType value) {
|
||||
this.languages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad accoustID.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccoustID() {
|
||||
return accoustID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad accoustID.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccoustID(String value) {
|
||||
this.accoustID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad codec.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCodec() {
|
||||
return codec;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad codec.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCodec(String value) {
|
||||
this.codec = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad channels.
|
||||
*
|
||||
*/
|
||||
public long getChannels() {
|
||||
return channels;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad channels.
|
||||
*
|
||||
*/
|
||||
public void setChannels(long value) {
|
||||
this.channels = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sampleRate.
|
||||
*
|
||||
*/
|
||||
public double getSampleRate() {
|
||||
return sampleRate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sampleRate.
|
||||
*
|
||||
*/
|
||||
public void setSampleRate(double value) {
|
||||
this.sampleRate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad meanBitrate.
|
||||
*
|
||||
*/
|
||||
public long getMeanBitrate() {
|
||||
return meanBitrate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad meanBitrate.
|
||||
*
|
||||
*/
|
||||
public void setMeanBitrate(long value) {
|
||||
this.meanBitrate = value;
|
||||
}
|
||||
|
||||
}
|
||||
129
CICMMetadata/java/generated/BarcodeType.java
Normal file
129
CICMMetadata/java/generated/BarcodeType.java
Normal file
@@ -0,0 +1,129 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para BarcodeType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BarcodeType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="type" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="aztec"/>
|
||||
* <enumeration value="codabar"/>
|
||||
* <enumeration value="code11"/>
|
||||
* <enumeration value="code128"/>
|
||||
* <enumeration value="code39"/>
|
||||
* <enumeration value="code93"/>
|
||||
* <enumeration value="cpcbinary"/>
|
||||
* <enumeration value="ezcode"/>
|
||||
* <enumeration value="fim"/>
|
||||
* <enumeration value="itf"/>
|
||||
* <enumeration value="itf14"/>
|
||||
* <enumeration value="ean13"/>
|
||||
* <enumeration value="ean8"/>
|
||||
* <enumeration value="maxicode"/>
|
||||
* <enumeration value="isbn"/>
|
||||
* <enumeration value="isrc"/>
|
||||
* <enumeration value="msi"/>
|
||||
* <enumeration value="tof"/>
|
||||
* <enumeration value="shotcode"/>
|
||||
* <enumeration value="rm4scc"/>
|
||||
* <enumeration value="qr"/>
|
||||
* <enumeration value="ean5"/>
|
||||
* <enumeration value="ean2"/>
|
||||
* <enumeration value="qr"/>
|
||||
* <enumeration value="postnet"/>
|
||||
* <enumeration value="postbar"/>
|
||||
* <enumeration value="plessey"/>
|
||||
* <enumeration value="pharmacode"/>
|
||||
* <enumeration value="pdf417"/>
|
||||
* <enumeration value="patchcode"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BarcodeType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class BarcodeType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "type", required = true)
|
||||
protected String type;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad type.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad type.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
}
|
||||
78
CICMMetadata/java/generated/BarcodesType.java
Normal file
78
CICMMetadata/java/generated/BarcodesType.java
Normal file
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Barcodes for this release
|
||||
*
|
||||
* <p>Clase Java para BarcodesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BarcodesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Barcode" type="{}BarcodeType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BarcodesType", propOrder = {
|
||||
"barcode"
|
||||
})
|
||||
public class BarcodesType {
|
||||
|
||||
@XmlElement(name = "Barcode", required = true)
|
||||
protected List<BarcodeType> barcode;
|
||||
|
||||
/**
|
||||
* Gets the value of the barcode property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the barcode property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBarcode().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BarcodeType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BarcodeType> getBarcode() {
|
||||
if (barcode == null) {
|
||||
barcode = new ArrayList<BarcodeType>();
|
||||
}
|
||||
return this.barcode;
|
||||
}
|
||||
|
||||
}
|
||||
1051
CICMMetadata/java/generated/BlockMediaType.java
Normal file
1051
CICMMetadata/java/generated/BlockMediaType.java
Normal file
File diff suppressed because it is too large
Load Diff
81
CICMMetadata/java/generated/BlockSizeType.java
Normal file
81
CICMMetadata/java/generated/BlockSizeType.java
Normal file
@@ -0,0 +1,81 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para BlockSizeType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BlockSizeType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>unsignedInt">
|
||||
* <attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BlockSizeType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class BlockSizeType {
|
||||
|
||||
@XmlValue
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long value;
|
||||
@XmlAttribute(name = "startingBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long startingBlock;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
*/
|
||||
public long getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
*/
|
||||
public void setValue(long value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startingBlock.
|
||||
*
|
||||
*/
|
||||
public long getStartingBlock() {
|
||||
return startingBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startingBlock.
|
||||
*
|
||||
*/
|
||||
public void setStartingBlock(long value) {
|
||||
this.startingBlock = value;
|
||||
}
|
||||
|
||||
}
|
||||
308
CICMMetadata/java/generated/BlockTrackType.java
Normal file
308
CICMMetadata/java/generated/BlockTrackType.java
Normal file
@@ -0,0 +1,308 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about track in non-abstracted block based media
|
||||
*
|
||||
* <p>Clase Java para BlockTrackType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BlockTrackType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Head" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* <element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BlockTrackType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"head",
|
||||
"cylinder",
|
||||
"startSector",
|
||||
"endSector",
|
||||
"sectors",
|
||||
"bytesPerSector",
|
||||
"checksums",
|
||||
"format"
|
||||
})
|
||||
public class BlockTrackType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Head")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int head;
|
||||
@XmlElement(name = "Cylinder")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long cylinder;
|
||||
@XmlElement(name = "StartSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startSector;
|
||||
@XmlElement(name = "EndSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endSector;
|
||||
@XmlElement(name = "Sectors", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sectors;
|
||||
@XmlElement(name = "BytesPerSector")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long bytesPerSector;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Format")
|
||||
protected String format;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad head.
|
||||
*
|
||||
*/
|
||||
public int getHead() {
|
||||
return head;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad head.
|
||||
*
|
||||
*/
|
||||
public void setHead(int value) {
|
||||
this.head = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cylinder.
|
||||
*
|
||||
*/
|
||||
public long getCylinder() {
|
||||
return cylinder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cylinder.
|
||||
*
|
||||
*/
|
||||
public void setCylinder(long value) {
|
||||
this.cylinder = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartSector(BigInteger value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndSector(BigInteger value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sectors.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSectors() {
|
||||
return sectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sectors.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSectors(BigInteger value) {
|
||||
this.sectors = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public long getBytesPerSector() {
|
||||
return bytesPerSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public void setBytesPerSector(long value) {
|
||||
this.bytesPerSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad format.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad format.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFormat(String value) {
|
||||
this.format = value;
|
||||
}
|
||||
|
||||
}
|
||||
325
CICMMetadata/java/generated/BookType.java
Normal file
325
CICMMetadata/java/generated/BookType.java
Normal file
@@ -0,0 +1,325 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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>Clase Java para BookType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </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")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad barcodes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType getBarcodes() {
|
||||
return barcodes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad barcodes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public void setBarcodes(BarcodesType value) {
|
||||
this.barcodes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cover.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public CoverType getCover() {
|
||||
return cover;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cover.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public void setCover(CoverType value) {
|
||||
this.cover = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad editorial.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEditorial() {
|
||||
return editorial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad editorial.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEditorial(String value) {
|
||||
this.editorial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad author.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad author.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad publicationDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getPublicationDate() {
|
||||
return publicationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad publicationDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setPublicationDate(XMLGregorianCalendar value) {
|
||||
this.publicationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad language.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad language.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pages.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pages.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setPages(Long value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pageSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pageSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPageSize(String value) {
|
||||
this.pageSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
162
CICMMetadata/java/generated/BorderType.java
Normal file
162
CICMMetadata/java/generated/BorderType.java
Normal file
@@ -0,0 +1,162 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para BorderType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BorderType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="session">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BorderType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class BorderType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "session")
|
||||
protected Long session;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setImage(String value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad session.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getSession() {
|
||||
return session;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad session.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setSession(Long value) {
|
||||
this.session = value;
|
||||
}
|
||||
|
||||
}
|
||||
886
CICMMetadata/java/generated/CICMMetadataType.java
Normal file
886
CICMMetadata/java/generated/CICMMetadataType.java
Normal file
@@ -0,0 +1,886 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Digital Asset Metadata
|
||||
*
|
||||
* <p>Clase Java para CICMMetadataType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CICMMetadataType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Developer" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Publisher" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Performer" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ReleaseType" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="Retail"/>
|
||||
* <enumeration value="Bundle"/>
|
||||
* <enumeration value="Coverdisc"/>
|
||||
* <enumeration value="Subscription"/>
|
||||
* <enumeration value="Demo"/>
|
||||
* <enumeration value="OEM"/>
|
||||
* <enumeration value="Shareware"/>
|
||||
* <enumeration value="FOSS"/>
|
||||
* <enumeration value="Adware"/>
|
||||
* <enumeration value="Donationware"/>
|
||||
* <enumeration value="Digital download"/>
|
||||
* <enumeration value="SaaS"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="ReleaseDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Keywords" type="{}KeywordsType" minOccurs="0"/>
|
||||
* <element name="Magazine" type="{}MagazineType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Book" type="{}BookType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Categories" type="{}CategoriesType" minOccurs="0"/>
|
||||
* <element name="Subcategories" type="{}SubcategoriesType" minOccurs="0"/>
|
||||
* <element name="Languages" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Systems" type="{}SystemsType" minOccurs="0"/>
|
||||
* <element name="Architectures" type="{}ArchitecturesType" minOccurs="0"/>
|
||||
* <element name="RequiredOperatingSystems" type="{}RequiredOperatingSystemsType" minOccurs="0"/>
|
||||
* <element name="UserManual" type="{}UserManualType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="OpticalDisc" type="{}OpticalDiscType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Advertisement" type="{}AdvertisementType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="LinearMedia" type="{}LinearMediaType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="PCICard" type="{}PCIType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="BlockMedia" type="{}BlockMediaType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="AudioMedia" type="{}AudioMediaType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CICMMetadataType", propOrder = {
|
||||
"developer",
|
||||
"publisher",
|
||||
"author",
|
||||
"performer",
|
||||
"name",
|
||||
"version",
|
||||
"releaseType",
|
||||
"releaseDate",
|
||||
"barcodes",
|
||||
"partNumber",
|
||||
"serialNumber",
|
||||
"keywords",
|
||||
"magazine",
|
||||
"book",
|
||||
"categories",
|
||||
"subcategories",
|
||||
"languages",
|
||||
"systems",
|
||||
"architectures",
|
||||
"requiredOperatingSystems",
|
||||
"userManual",
|
||||
"opticalDisc",
|
||||
"advertisement",
|
||||
"linearMedia",
|
||||
"pciCard",
|
||||
"blockMedia",
|
||||
"audioMedia"
|
||||
})
|
||||
public class CICMMetadataType {
|
||||
|
||||
@XmlElement(name = "Developer")
|
||||
protected List<String> developer;
|
||||
@XmlElement(name = "Publisher")
|
||||
protected List<String> publisher;
|
||||
@XmlElement(name = "Author")
|
||||
protected List<String> author;
|
||||
@XmlElement(name = "Performer")
|
||||
protected List<String> performer;
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version")
|
||||
protected String version;
|
||||
@XmlElement(name = "ReleaseType")
|
||||
protected String releaseType;
|
||||
@XmlElement(name = "ReleaseDate")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar releaseDate;
|
||||
@XmlElement(name = "Barcodes")
|
||||
protected BarcodesType barcodes;
|
||||
@XmlElement(name = "PartNumber")
|
||||
protected String partNumber;
|
||||
@XmlElement(name = "SerialNumber")
|
||||
protected String serialNumber;
|
||||
@XmlElement(name = "Keywords")
|
||||
protected KeywordsType keywords;
|
||||
@XmlElement(name = "Magazine")
|
||||
protected List<MagazineType> magazine;
|
||||
@XmlElement(name = "Book")
|
||||
protected List<BookType> book;
|
||||
@XmlElement(name = "Categories")
|
||||
protected CategoriesType categories;
|
||||
@XmlElement(name = "Subcategories")
|
||||
protected SubcategoriesType subcategories;
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlElement(name = "Systems")
|
||||
protected SystemsType systems;
|
||||
@XmlElement(name = "Architectures")
|
||||
protected ArchitecturesType architectures;
|
||||
@XmlElement(name = "RequiredOperatingSystems")
|
||||
protected RequiredOperatingSystemsType requiredOperatingSystems;
|
||||
@XmlElement(name = "UserManual")
|
||||
protected List<UserManualType> userManual;
|
||||
@XmlElement(name = "OpticalDisc")
|
||||
protected List<OpticalDiscType> opticalDisc;
|
||||
@XmlElement(name = "Advertisement")
|
||||
protected List<AdvertisementType> advertisement;
|
||||
@XmlElement(name = "LinearMedia")
|
||||
protected List<LinearMediaType> linearMedia;
|
||||
@XmlElement(name = "PCICard")
|
||||
protected List<PCIType> pciCard;
|
||||
@XmlElement(name = "BlockMedia")
|
||||
protected List<BlockMediaType> blockMedia;
|
||||
@XmlElement(name = "AudioMedia")
|
||||
protected List<AudioMediaType> audioMedia;
|
||||
|
||||
/**
|
||||
* Gets the value of the developer property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the developer property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDeveloper().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getDeveloper() {
|
||||
if (developer == null) {
|
||||
developer = new ArrayList<String>();
|
||||
}
|
||||
return this.developer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the publisher property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the publisher property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPublisher().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getPublisher() {
|
||||
if (publisher == null) {
|
||||
publisher = new ArrayList<String>();
|
||||
}
|
||||
return this.publisher;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the author property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the author property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAuthor().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getAuthor() {
|
||||
if (author == null) {
|
||||
author = new ArrayList<String>();
|
||||
}
|
||||
return this.author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the performer property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the performer property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPerformer().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getPerformer() {
|
||||
if (performer == null) {
|
||||
performer = new ArrayList<String>();
|
||||
}
|
||||
return this.performer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad version.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad version.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersion(String value) {
|
||||
this.version = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad releaseType.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getReleaseType() {
|
||||
return releaseType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad releaseType.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setReleaseType(String value) {
|
||||
this.releaseType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad releaseDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getReleaseDate() {
|
||||
return releaseDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad releaseDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setReleaseDate(XMLGregorianCalendar value) {
|
||||
this.releaseDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad barcodes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType getBarcodes() {
|
||||
return barcodes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad barcodes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public void setBarcodes(BarcodesType value) {
|
||||
this.barcodes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad partNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPartNumber() {
|
||||
return partNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad partNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPartNumber(String value) {
|
||||
this.partNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad serialNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerialNumber() {
|
||||
return serialNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad serialNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerialNumber(String value) {
|
||||
this.serialNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad keywords.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KeywordsType }
|
||||
*
|
||||
*/
|
||||
public KeywordsType getKeywords() {
|
||||
return keywords;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad keywords.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KeywordsType }
|
||||
*
|
||||
*/
|
||||
public void setKeywords(KeywordsType value) {
|
||||
this.keywords = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the magazine property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the magazine property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMagazine().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link MagazineType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<MagazineType> getMagazine() {
|
||||
if (magazine == null) {
|
||||
magazine = new ArrayList<MagazineType>();
|
||||
}
|
||||
return this.magazine;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the book property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the book property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBook().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BookType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BookType> getBook() {
|
||||
if (book == null) {
|
||||
book = new ArrayList<BookType>();
|
||||
}
|
||||
return this.book;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad categories.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CategoriesType }
|
||||
*
|
||||
*/
|
||||
public CategoriesType getCategories() {
|
||||
return categories;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad categories.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CategoriesType }
|
||||
*
|
||||
*/
|
||||
public void setCategories(CategoriesType value) {
|
||||
this.categories = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad subcategories.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SubcategoriesType }
|
||||
*
|
||||
*/
|
||||
public SubcategoriesType getSubcategories() {
|
||||
return subcategories;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad subcategories.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SubcategoriesType }
|
||||
*
|
||||
*/
|
||||
public void setSubcategories(SubcategoriesType value) {
|
||||
this.subcategories = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad languages.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguages() {
|
||||
return languages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad languages.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguages(LanguagesType value) {
|
||||
this.languages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad systems.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SystemsType }
|
||||
*
|
||||
*/
|
||||
public SystemsType getSystems() {
|
||||
return systems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad systems.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SystemsType }
|
||||
*
|
||||
*/
|
||||
public void setSystems(SystemsType value) {
|
||||
this.systems = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad architectures.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ArchitecturesType }
|
||||
*
|
||||
*/
|
||||
public ArchitecturesType getArchitectures() {
|
||||
return architectures;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad architectures.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ArchitecturesType }
|
||||
*
|
||||
*/
|
||||
public void setArchitectures(ArchitecturesType value) {
|
||||
this.architectures = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad requiredOperatingSystems.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RequiredOperatingSystemsType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemsType getRequiredOperatingSystems() {
|
||||
return requiredOperatingSystems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad requiredOperatingSystems.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RequiredOperatingSystemsType }
|
||||
*
|
||||
*/
|
||||
public void setRequiredOperatingSystems(RequiredOperatingSystemsType value) {
|
||||
this.requiredOperatingSystems = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the userManual property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the userManual property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getUserManual().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link UserManualType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<UserManualType> getUserManual() {
|
||||
if (userManual == null) {
|
||||
userManual = new ArrayList<UserManualType>();
|
||||
}
|
||||
return this.userManual;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the opticalDisc property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the opticalDisc property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOpticalDisc().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link OpticalDiscType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<OpticalDiscType> getOpticalDisc() {
|
||||
if (opticalDisc == null) {
|
||||
opticalDisc = new ArrayList<OpticalDiscType>();
|
||||
}
|
||||
return this.opticalDisc;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the advertisement property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the advertisement property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAdvertisement().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AdvertisementType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AdvertisementType> getAdvertisement() {
|
||||
if (advertisement == null) {
|
||||
advertisement = new ArrayList<AdvertisementType>();
|
||||
}
|
||||
return this.advertisement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the linearMedia property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the linearMedia property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLinearMedia().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LinearMediaType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LinearMediaType> getLinearMedia() {
|
||||
if (linearMedia == null) {
|
||||
linearMedia = new ArrayList<LinearMediaType>();
|
||||
}
|
||||
return this.linearMedia;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pciCard property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the pciCard property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPCICard().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link PCIType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PCIType> getPCICard() {
|
||||
if (pciCard == null) {
|
||||
pciCard = new ArrayList<PCIType>();
|
||||
}
|
||||
return this.pciCard;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the blockMedia property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the blockMedia property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBlockMedia().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BlockMediaType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BlockMediaType> getBlockMedia() {
|
||||
if (blockMedia == null) {
|
||||
blockMedia = new ArrayList<BlockMediaType>();
|
||||
}
|
||||
return this.blockMedia;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the audioMedia property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the audioMedia property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAudioMedia().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AudioMediaType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AudioMediaType> getAudioMedia() {
|
||||
if (audioMedia == null) {
|
||||
audioMedia = new ArrayList<AudioMediaType>();
|
||||
}
|
||||
return this.audioMedia;
|
||||
}
|
||||
|
||||
}
|
||||
111
CICMMetadata/java/generated/CaseScanType.java
Normal file
111
CICMMetadata/java/generated/CaseScanType.java
Normal file
@@ -0,0 +1,111 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para CaseScanType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CaseScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseScanElement">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="sleeve"/>
|
||||
* <enumeration value="inner"/>
|
||||
* <enumeration value="inlay"/>
|
||||
* <enumeration value="frontback"/>
|
||||
* <enumeration value="frontfull"/>
|
||||
* <enumeration value="boxfront"/>
|
||||
* <enumeration value="boxback"/>
|
||||
* <enumeration value="boxspine"/>
|
||||
* <enumeration value="external"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CaseScanType", propOrder = {
|
||||
"caseScanElement",
|
||||
"scan"
|
||||
})
|
||||
public class CaseScanType {
|
||||
|
||||
@XmlElement(name = "CaseScanElement", required = true)
|
||||
protected String caseScanElement;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad caseScanElement.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCaseScanElement() {
|
||||
return caseScanElement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad caseScanElement.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCaseScanElement(String value) {
|
||||
this.caseScanElement = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
129
CICMMetadata/java/generated/CaseType.java
Normal file
129
CICMMetadata/java/generated/CaseType.java
Normal file
@@ -0,0 +1,129 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para CaseType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CaseType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseType">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="jewel"/>
|
||||
* <enumeration value="bigjewel"/>
|
||||
* <enumeration value="slimjewel"/>
|
||||
* <enumeration value="sleeve"/>
|
||||
* <enumeration value="qpack"/>
|
||||
* <enumeration value="digisleeve"/>
|
||||
* <enumeration value="discboxslider"/>
|
||||
* <enumeration value="compacplus"/>
|
||||
* <enumeration value="keepcase"/>
|
||||
* <enumeration value="snapcase"/>
|
||||
* <enumeration value="softcase"/>
|
||||
* <enumeration value="ecopack"/>
|
||||
* <enumeration value="liftlock"/>
|
||||
* <enumeration value="spindle"/>
|
||||
* <enumeration value="ps2case"/>
|
||||
* <enumeration value="ps3case"/>
|
||||
* <enumeration value="bluraykeepcase"/>
|
||||
* <enumeration value="pscase"/>
|
||||
* <enumeration value="dccase"/>
|
||||
* <enumeration value="saturncase"/>
|
||||
* <enumeration value="xboxcase"/>
|
||||
* <enumeration value="xbox360case"/>
|
||||
* <enumeration value="xboxonecase"/>
|
||||
* <enumeration value="saturnbigcase"/>
|
||||
* <enumeration value="gccase"/>
|
||||
* <enumeration value="wiicase"/>
|
||||
* <enumeration value="unknown"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scans" type="{}ScansType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CaseType", propOrder = {
|
||||
"caseType",
|
||||
"scans"
|
||||
})
|
||||
public class CaseType {
|
||||
|
||||
@XmlElement(name = "CaseType", required = true)
|
||||
protected String caseType;
|
||||
@XmlElement(name = "Scans", required = true)
|
||||
protected ScansType scans;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad caseType.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCaseType() {
|
||||
return caseType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad caseType.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCaseType(String value) {
|
||||
this.caseType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scans.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType getScans() {
|
||||
return scans;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scans.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public void setScans(ScansType value) {
|
||||
this.scans = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/CategoriesType.java
Normal file
76
CICMMetadata/java/generated/CategoriesType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para CategoriesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CategoriesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Category" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CategoriesType", propOrder = {
|
||||
"category"
|
||||
})
|
||||
public class CategoriesType {
|
||||
|
||||
@XmlElement(name = "Category", required = true)
|
||||
protected List<String> category;
|
||||
|
||||
/**
|
||||
* Gets the value of the category property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the category property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCategory().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getCategory() {
|
||||
if (category == null) {
|
||||
category = new ArrayList<String>();
|
||||
}
|
||||
return this.category;
|
||||
}
|
||||
|
||||
}
|
||||
125
CICMMetadata/java/generated/ChecksumType.java
Normal file
125
CICMMetadata/java/generated/ChecksumType.java
Normal file
@@ -0,0 +1,125 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ChecksumType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ChecksumType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="type" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="fletcher16"/>
|
||||
* <enumeration value="fletcher32"/>
|
||||
* <enumeration value="adler32"/>
|
||||
* <enumeration value="crc16"/>
|
||||
* <enumeration value="crc16ccitt"/>
|
||||
* <enumeration value="crc32"/>
|
||||
* <enumeration value="crc64"/>
|
||||
* <enumeration value="md4"/>
|
||||
* <enumeration value="md5"/>
|
||||
* <enumeration value="dm6"/>
|
||||
* <enumeration value="ripemd128"/>
|
||||
* <enumeration value="ripemd160"/>
|
||||
* <enumeration value="ripemed320"/>
|
||||
* <enumeration value="sha1"/>
|
||||
* <enumeration value="sha224"/>
|
||||
* <enumeration value="sha256"/>
|
||||
* <enumeration value="sha384"/>
|
||||
* <enumeration value="sha512"/>
|
||||
* <enumeration value="sha3"/>
|
||||
* <enumeration value="skein"/>
|
||||
* <enumeration value="snefru"/>
|
||||
* <enumeration value="blake256"/>
|
||||
* <enumeration value="blake512"/>
|
||||
* <enumeration value="tiger"/>
|
||||
* <enumeration value="whirlpool"/>
|
||||
* <enumeration value="spamsum"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ChecksumType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class ChecksumType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "type", required = true)
|
||||
protected String type;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad type.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad type.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
}
|
||||
78
CICMMetadata/java/generated/ChecksumsType.java
Normal file
78
CICMMetadata/java/generated/ChecksumsType.java
Normal file
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Checksum of file element
|
||||
*
|
||||
* <p>Clase Java para ChecksumsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ChecksumsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Checksum" type="{}ChecksumType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ChecksumsType", propOrder = {
|
||||
"checksum"
|
||||
})
|
||||
public class ChecksumsType {
|
||||
|
||||
@XmlElement(name = "Checksum", required = true)
|
||||
protected List<ChecksumType> checksum;
|
||||
|
||||
/**
|
||||
* Gets the value of the checksum property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the checksum property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getChecksum().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ChecksumType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ChecksumType> getChecksum() {
|
||||
if (checksum == null) {
|
||||
checksum = new ArrayList<ChecksumType>();
|
||||
}
|
||||
return this.checksum;
|
||||
}
|
||||
|
||||
}
|
||||
492
CICMMetadata/java/generated/ContentsFileType.java
Normal file
492
CICMMetadata/java/generated/ContentsFileType.java
Normal file
@@ -0,0 +1,492 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
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 ContentsFileType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ContentsFileType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="ExtendedAttributes" type="{}ExtendedAttributesType"/>
|
||||
* </sequence>
|
||||
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="creationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="accessTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="statusChangeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="backupTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="lastWriteTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="attributes" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="posixMode" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="deviceNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="posixGroupId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="inode" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="links" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="posixUserId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ContentsFileType", propOrder = {
|
||||
"checksums",
|
||||
"extendedAttributes"
|
||||
})
|
||||
public class ContentsFileType {
|
||||
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "ExtendedAttributes", required = true)
|
||||
protected ExtendedAttributesType extendedAttributes;
|
||||
@XmlAttribute(name = "name", required = true)
|
||||
protected String name;
|
||||
@XmlAttribute(name = "creationTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar creationTime;
|
||||
@XmlAttribute(name = "accessTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar accessTime;
|
||||
@XmlAttribute(name = "statusChangeTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar statusChangeTime;
|
||||
@XmlAttribute(name = "backupTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar backupTime;
|
||||
@XmlAttribute(name = "lastWriteTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar lastWriteTime;
|
||||
@XmlAttribute(name = "attributes", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger attributes;
|
||||
@XmlAttribute(name = "posixMode")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long posixMode;
|
||||
@XmlAttribute(name = "deviceNumber")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger deviceNumber;
|
||||
@XmlAttribute(name = "posixGroupId")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger posixGroupId;
|
||||
@XmlAttribute(name = "inode", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger inode;
|
||||
@XmlAttribute(name = "links", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger links;
|
||||
@XmlAttribute(name = "posixUserId")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger posixUserId;
|
||||
@XmlAttribute(name = "length", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger length;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad extendedAttributes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ExtendedAttributesType }
|
||||
*
|
||||
*/
|
||||
public ExtendedAttributesType getExtendedAttributes() {
|
||||
return extendedAttributes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad extendedAttributes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ExtendedAttributesType }
|
||||
*
|
||||
*/
|
||||
public void setExtendedAttributes(ExtendedAttributesType value) {
|
||||
this.extendedAttributes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad creationTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getCreationTime() {
|
||||
return creationTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad creationTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setCreationTime(XMLGregorianCalendar value) {
|
||||
this.creationTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad accessTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getAccessTime() {
|
||||
return accessTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad accessTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setAccessTime(XMLGregorianCalendar value) {
|
||||
this.accessTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad statusChangeTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getStatusChangeTime() {
|
||||
return statusChangeTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad statusChangeTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setStatusChangeTime(XMLGregorianCalendar value) {
|
||||
this.statusChangeTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad backupTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getBackupTime() {
|
||||
return backupTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad backupTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setBackupTime(XMLGregorianCalendar value) {
|
||||
this.backupTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad lastWriteTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getLastWriteTime() {
|
||||
return lastWriteTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad lastWriteTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setLastWriteTime(XMLGregorianCalendar value) {
|
||||
this.lastWriteTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad attributes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getAttributes() {
|
||||
return attributes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad attributes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setAttributes(BigInteger value) {
|
||||
this.attributes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad posixMode.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getPosixMode() {
|
||||
return posixMode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad posixMode.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setPosixMode(Long value) {
|
||||
this.posixMode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad deviceNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getDeviceNumber() {
|
||||
return deviceNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad deviceNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setDeviceNumber(BigInteger value) {
|
||||
this.deviceNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad posixGroupId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getPosixGroupId() {
|
||||
return posixGroupId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad posixGroupId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setPosixGroupId(BigInteger value) {
|
||||
this.posixGroupId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad inode.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getInode() {
|
||||
return inode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad inode.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setInode(BigInteger value) {
|
||||
this.inode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad links.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getLinks() {
|
||||
return links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad links.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setLinks(BigInteger value) {
|
||||
this.links = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad posixUserId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getPosixUserId() {
|
||||
return posixUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad posixUserId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setPosixUserId(BigInteger value) {
|
||||
this.posixUserId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad length.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getLength() {
|
||||
return length;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad length.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setLength(BigInteger value) {
|
||||
this.length = value;
|
||||
}
|
||||
|
||||
}
|
||||
81
CICMMetadata/java/generated/CoordinatesType.java
Normal file
81
CICMMetadata/java/generated/CoordinatesType.java
Normal file
@@ -0,0 +1,81 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para CoordinatesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CoordinatesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Latitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||
* <element name="Longitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CoordinatesType", propOrder = {
|
||||
"latitude",
|
||||
"longitude"
|
||||
})
|
||||
public class CoordinatesType {
|
||||
|
||||
@XmlElement(name = "Latitude")
|
||||
protected double latitude;
|
||||
@XmlElement(name = "Longitude")
|
||||
protected double longitude;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad latitude.
|
||||
*
|
||||
*/
|
||||
public double getLatitude() {
|
||||
return latitude;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad latitude.
|
||||
*
|
||||
*/
|
||||
public void setLatitude(double value) {
|
||||
this.latitude = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad longitude.
|
||||
*
|
||||
*/
|
||||
public double getLongitude() {
|
||||
return longitude;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad longitude.
|
||||
*
|
||||
*/
|
||||
public void setLongitude(double value) {
|
||||
this.longitude = value;
|
||||
}
|
||||
|
||||
}
|
||||
123
CICMMetadata/java/generated/CoverType.java
Normal file
123
CICMMetadata/java/generated/CoverType.java
Normal file
@@ -0,0 +1,123 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para CoverType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CoverType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="File" type="{}FileType"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Thumbnail" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CoverType", propOrder = {
|
||||
"file",
|
||||
"checksums",
|
||||
"thumbnail"
|
||||
})
|
||||
public class CoverType {
|
||||
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected FileType file;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Thumbnail", required = true)
|
||||
protected byte[] thumbnail;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad file.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad file.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public void setFile(FileType value) {
|
||||
this.file = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad thumbnail.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* byte[]
|
||||
*/
|
||||
public byte[] getThumbnail() {
|
||||
return thumbnail;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad thumbnail.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* byte[]
|
||||
*/
|
||||
public void setThumbnail(byte[] value) {
|
||||
this.thumbnail = value;
|
||||
}
|
||||
|
||||
}
|
||||
147
CICMMetadata/java/generated/DimensionsType.java
Normal file
147
CICMMetadata/java/generated/DimensionsType.java
Normal file
@@ -0,0 +1,147 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Dimensions of media
|
||||
*
|
||||
* <p>Clase Java para DimensionsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DimensionsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Diameter" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Height" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Width" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Thickness" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DimensionsType", propOrder = {
|
||||
"diameter",
|
||||
"height",
|
||||
"width",
|
||||
"thickness"
|
||||
})
|
||||
public class DimensionsType {
|
||||
|
||||
@XmlElement(name = "Diameter")
|
||||
protected Double diameter;
|
||||
@XmlElement(name = "Height")
|
||||
protected Double height;
|
||||
@XmlElement(name = "Width")
|
||||
protected Double width;
|
||||
@XmlElement(name = "Thickness")
|
||||
protected double thickness;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad diameter.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getDiameter() {
|
||||
return diameter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad diameter.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setDiameter(Double value) {
|
||||
this.diameter = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad height.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad height.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setHeight(Double value) {
|
||||
this.height = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad width.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getWidth() {
|
||||
return width;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad width.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setWidth(Double value) {
|
||||
this.width = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad thickness.
|
||||
*
|
||||
*/
|
||||
public double getThickness() {
|
||||
return thickness;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad thickness.
|
||||
*
|
||||
*/
|
||||
public void setThickness(double value) {
|
||||
this.thickness = value;
|
||||
}
|
||||
|
||||
}
|
||||
476
CICMMetadata/java/generated/DirectoryType.java
Normal file
476
CICMMetadata/java/generated/DirectoryType.java
Normal file
@@ -0,0 +1,476 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
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 DirectoryType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DirectoryType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="File" type="{}ContentsFileType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Directory" type="{}DirectoryType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="creationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="accessTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="statusChangeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="backupTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="lastWriteTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
|
||||
* <attribute name="attributes" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="posixMode" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="deviceNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="posixGroupId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="inode" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="links" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* <attribute name="posixUserId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DirectoryType", propOrder = {
|
||||
"file",
|
||||
"directory"
|
||||
})
|
||||
public class DirectoryType {
|
||||
|
||||
@XmlElement(name = "File")
|
||||
protected List<ContentsFileType> file;
|
||||
@XmlElement(name = "Directory")
|
||||
protected List<DirectoryType> directory;
|
||||
@XmlAttribute(name = "name", required = true)
|
||||
protected String name;
|
||||
@XmlAttribute(name = "creationTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar creationTime;
|
||||
@XmlAttribute(name = "accessTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar accessTime;
|
||||
@XmlAttribute(name = "statusChangeTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar statusChangeTime;
|
||||
@XmlAttribute(name = "backupTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar backupTime;
|
||||
@XmlAttribute(name = "lastWriteTime")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar lastWriteTime;
|
||||
@XmlAttribute(name = "attributes", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger attributes;
|
||||
@XmlAttribute(name = "posixMode")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long posixMode;
|
||||
@XmlAttribute(name = "deviceNumber")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger deviceNumber;
|
||||
@XmlAttribute(name = "posixGroupId")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger posixGroupId;
|
||||
@XmlAttribute(name = "inode")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger inode;
|
||||
@XmlAttribute(name = "links")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger links;
|
||||
@XmlAttribute(name = "posixUserId")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger posixUserId;
|
||||
|
||||
/**
|
||||
* Gets the value of the file property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the file property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getFile().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ContentsFileType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ContentsFileType> getFile() {
|
||||
if (file == null) {
|
||||
file = new ArrayList<ContentsFileType>();
|
||||
}
|
||||
return this.file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the directory property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the directory property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDirectory().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DirectoryType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DirectoryType> getDirectory() {
|
||||
if (directory == null) {
|
||||
directory = new ArrayList<DirectoryType>();
|
||||
}
|
||||
return this.directory;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad creationTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getCreationTime() {
|
||||
return creationTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad creationTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setCreationTime(XMLGregorianCalendar value) {
|
||||
this.creationTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad accessTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getAccessTime() {
|
||||
return accessTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad accessTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setAccessTime(XMLGregorianCalendar value) {
|
||||
this.accessTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad statusChangeTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getStatusChangeTime() {
|
||||
return statusChangeTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad statusChangeTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setStatusChangeTime(XMLGregorianCalendar value) {
|
||||
this.statusChangeTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad backupTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getBackupTime() {
|
||||
return backupTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad backupTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setBackupTime(XMLGregorianCalendar value) {
|
||||
this.backupTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad lastWriteTime.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getLastWriteTime() {
|
||||
return lastWriteTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad lastWriteTime.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setLastWriteTime(XMLGregorianCalendar value) {
|
||||
this.lastWriteTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad attributes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getAttributes() {
|
||||
return attributes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad attributes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setAttributes(BigInteger value) {
|
||||
this.attributes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad posixMode.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getPosixMode() {
|
||||
return posixMode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad posixMode.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setPosixMode(Long value) {
|
||||
this.posixMode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad deviceNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getDeviceNumber() {
|
||||
return deviceNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad deviceNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setDeviceNumber(BigInteger value) {
|
||||
this.deviceNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad posixGroupId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getPosixGroupId() {
|
||||
return posixGroupId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad posixGroupId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setPosixGroupId(BigInteger value) {
|
||||
this.posixGroupId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad inode.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getInode() {
|
||||
return inode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad inode.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setInode(BigInteger value) {
|
||||
this.inode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad links.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getLinks() {
|
||||
return links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad links.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setLinks(BigInteger value) {
|
||||
this.links = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad posixUserId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getPosixUserId() {
|
||||
return posixUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad posixUserId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setPosixUserId(BigInteger value) {
|
||||
this.posixUserId = value;
|
||||
}
|
||||
|
||||
}
|
||||
108
CICMMetadata/java/generated/DiscScanType.java
Normal file
108
CICMMetadata/java/generated/DiscScanType.java
Normal file
@@ -0,0 +1,108 @@
|
||||
//
|
||||
// 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: 2015.11.07 at 05:27:06 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for DiscScanType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DiscScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DiscScanElement">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="up"/>
|
||||
* <enumeration value="down"/>
|
||||
* <enumeration value="front"/>
|
||||
* <enumeration value="back"/>
|
||||
* <enumeration value="left"/>
|
||||
* <enumeration value="right"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiscScanType", propOrder = {
|
||||
"discScanElement",
|
||||
"scan"
|
||||
})
|
||||
public class DiscScanType {
|
||||
|
||||
@XmlElement(name = "DiscScanElement", required = true)
|
||||
protected String discScanElement;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the discScanElement property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiscScanElement() {
|
||||
return discScanElement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discScanElement property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiscScanElement(String value) {
|
||||
this.discScanElement = 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;
|
||||
}
|
||||
|
||||
}
|
||||
78
CICMMetadata/java/generated/DumpHardwareArrayType.java
Normal file
78
CICMMetadata/java/generated/DumpHardwareArrayType.java
Normal file
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Array of drives information
|
||||
*
|
||||
* <p>Clase Java para DumpHardwareArrayType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DumpHardwareArrayType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DumpHardware" type="{}DumpHardwareType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DumpHardwareArrayType", propOrder = {
|
||||
"dumpHardware"
|
||||
})
|
||||
public class DumpHardwareArrayType {
|
||||
|
||||
@XmlElement(name = "DumpHardware", required = true)
|
||||
protected List<DumpHardwareType> dumpHardware;
|
||||
|
||||
/**
|
||||
* Gets the value of the dumpHardware property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dumpHardware property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDumpHardware().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DumpHardwareType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DumpHardwareType> getDumpHardware() {
|
||||
if (dumpHardware == null) {
|
||||
dumpHardware = new ArrayList<DumpHardwareType>();
|
||||
}
|
||||
return this.dumpHardware;
|
||||
}
|
||||
|
||||
}
|
||||
237
CICMMetadata/java/generated/DumpHardwareType.java
Normal file
237
CICMMetadata/java/generated/DumpHardwareType.java
Normal file
@@ -0,0 +1,237 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para DumpHardwareType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DumpHardwareType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Revision" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Firmware" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Extents" type="{}ExtentsType"/>
|
||||
* <element name="Software" type="{}SoftwareType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DumpHardwareType", propOrder = {
|
||||
"manufacturer",
|
||||
"model",
|
||||
"revision",
|
||||
"firmware",
|
||||
"serial",
|
||||
"extents",
|
||||
"software"
|
||||
})
|
||||
public class DumpHardwareType {
|
||||
|
||||
@XmlElement(name = "Manufacturer", required = true)
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model", required = true)
|
||||
protected String model;
|
||||
@XmlElement(name = "Revision", required = true)
|
||||
protected String revision;
|
||||
@XmlElement(name = "Firmware", required = true)
|
||||
protected String firmware;
|
||||
@XmlElement(name = "Serial", required = true)
|
||||
protected String serial;
|
||||
@XmlElement(name = "Extents", required = true)
|
||||
protected ExtentsType extents;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected SoftwareType software;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad model.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad model.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setModel(String value) {
|
||||
this.model = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad revision.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRevision() {
|
||||
return revision;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad revision.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRevision(String value) {
|
||||
this.revision = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad firmware.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFirmware() {
|
||||
return firmware;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad firmware.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFirmware(String value) {
|
||||
this.firmware = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad serial.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerial() {
|
||||
return serial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad serial.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerial(String value) {
|
||||
this.serial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad extents.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ExtentsType }
|
||||
*
|
||||
*/
|
||||
public ExtentsType getExtents() {
|
||||
return extents;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad extents.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ExtentsType }
|
||||
*
|
||||
*/
|
||||
public void setExtents(ExtentsType value) {
|
||||
this.extents = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad software.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SoftwareType }
|
||||
*
|
||||
*/
|
||||
public SoftwareType getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad software.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SoftwareType }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(SoftwareType value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
}
|
||||
131
CICMMetadata/java/generated/DumpType.java
Normal file
131
CICMMetadata/java/generated/DumpType.java
Normal file
@@ -0,0 +1,131 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about dumped structure
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para DumpType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DumpType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DumpType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class DumpType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setImage(String value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
}
|
||||
163
CICMMetadata/java/generated/EVPDType.java
Normal file
163
CICMMetadata/java/generated/EVPDType.java
Normal file
@@ -0,0 +1,163 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para EVPDType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="EVPDType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="page">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="255"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "EVPDType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class EVPDType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "page")
|
||||
protected Short page;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setImage(String value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad page.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Short getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad page.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setPage(Short value) {
|
||||
this.page = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
CICMMetadata/java/generated/ExtendedAttributeType.java
Normal file
127
CICMMetadata/java/generated/ExtendedAttributeType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ExtendedAttributeType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ExtendedAttributeType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ExtendedAttributeType", propOrder = {
|
||||
"checksums"
|
||||
})
|
||||
public class ExtendedAttributeType {
|
||||
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "name", required = true)
|
||||
protected String name;
|
||||
@XmlAttribute(name = "length", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger length;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad length.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getLength() {
|
||||
return length;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad length.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setLength(BigInteger value) {
|
||||
this.length = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/ExtendedAttributesType.java
Normal file
76
CICMMetadata/java/generated/ExtendedAttributesType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ExtendedAttributesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ExtendedAttributesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ExtendedAttribute" type="{}ExtendedAttributeType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ExtendedAttributesType", propOrder = {
|
||||
"extendedAttribute"
|
||||
})
|
||||
public class ExtendedAttributesType {
|
||||
|
||||
@XmlElement(name = "ExtendedAttribute", required = true)
|
||||
protected List<ExtendedAttributeType> extendedAttribute;
|
||||
|
||||
/**
|
||||
* Gets the value of the extendedAttribute property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the extendedAttribute property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getExtendedAttribute().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ExtendedAttributeType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ExtendedAttributeType> getExtendedAttribute() {
|
||||
if (extendedAttribute == null) {
|
||||
extendedAttribute = new ArrayList<ExtendedAttributeType>();
|
||||
}
|
||||
return this.extendedAttribute;
|
||||
}
|
||||
|
||||
}
|
||||
101
CICMMetadata/java/generated/ExtentType.java
Normal file
101
CICMMetadata/java/generated/ExtentType.java
Normal file
@@ -0,0 +1,101 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ExtentType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ExtentType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ExtentType", propOrder = {
|
||||
"start",
|
||||
"end"
|
||||
})
|
||||
public class ExtentType {
|
||||
|
||||
@XmlElement(name = "Start", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger start;
|
||||
@XmlElement(name = "End", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger end;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad start.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStart() {
|
||||
return start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad start.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStart(BigInteger value) {
|
||||
this.start = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad end.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEnd() {
|
||||
return end;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad end.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEnd(BigInteger value) {
|
||||
this.end = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/ExtentsType.java
Normal file
76
CICMMetadata/java/generated/ExtentsType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ExtentsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ExtentsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Extent" type="{}ExtentType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ExtentsType", propOrder = {
|
||||
"extent"
|
||||
})
|
||||
public class ExtentsType {
|
||||
|
||||
@XmlElement(name = "Extent", required = true)
|
||||
protected List<ExtentType> extent;
|
||||
|
||||
/**
|
||||
* Gets the value of the extent property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the extent property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getExtent().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ExtentType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ExtentType> getExtent() {
|
||||
if (extent == null) {
|
||||
extent = new ArrayList<ExtentType>();
|
||||
}
|
||||
return this.extent;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/FileSystemInformationType.java
Normal file
76
CICMMetadata/java/generated/FileSystemInformationType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para FileSystemInformationType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileSystemInformationType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Partition" type="{}PartitionType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileSystemInformationType", propOrder = {
|
||||
"partition"
|
||||
})
|
||||
public class FileSystemInformationType {
|
||||
|
||||
@XmlElement(name = "Partition", required = true)
|
||||
protected List<PartitionType> partition;
|
||||
|
||||
/**
|
||||
* Gets the value of the partition property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the partition property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPartition().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link PartitionType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PartitionType> getPartition() {
|
||||
if (partition == null) {
|
||||
partition = new ArrayList<PartitionType>();
|
||||
}
|
||||
return this.partition;
|
||||
}
|
||||
|
||||
}
|
||||
591
CICMMetadata/java/generated/FileSystemType.java
Normal file
591
CICMMetadata/java/generated/FileSystemType.java
Normal file
@@ -0,0 +1,591 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about a filesystem
|
||||
*
|
||||
* <p>Clase Java para FileSystemType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileSystemType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="ModificationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="BackupDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Files" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Bootable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="VolumeSerial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="VolumeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Dirty" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="ExpirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="EffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="SystemIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="VolumeSetIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="PublisherIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="DataPreparerIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ApplicationIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Contents" type="{}FilesystemContentsType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileSystemType", propOrder = {
|
||||
"type",
|
||||
"creationDate",
|
||||
"modificationDate",
|
||||
"backupDate",
|
||||
"clusterSize",
|
||||
"clusters",
|
||||
"files",
|
||||
"bootable",
|
||||
"volumeSerial",
|
||||
"volumeName",
|
||||
"freeClusters",
|
||||
"dirty",
|
||||
"expirationDate",
|
||||
"effectiveDate",
|
||||
"systemIdentifier",
|
||||
"volumeSetIdentifier",
|
||||
"publisherIdentifier",
|
||||
"dataPreparerIdentifier",
|
||||
"applicationIdentifier",
|
||||
"contents"
|
||||
})
|
||||
public class FileSystemType {
|
||||
|
||||
@XmlElement(name = "Type", required = true)
|
||||
protected String type;
|
||||
@XmlElement(name = "CreationDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar creationDate;
|
||||
@XmlElement(name = "ModificationDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar modificationDate;
|
||||
@XmlElement(name = "BackupDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar backupDate;
|
||||
@XmlElement(name = "ClusterSize")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long clusterSize;
|
||||
@XmlElement(name = "Clusters", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger clusters;
|
||||
@XmlElement(name = "Files")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger files;
|
||||
@XmlElement(name = "Bootable")
|
||||
protected boolean bootable;
|
||||
@XmlElement(name = "VolumeSerial")
|
||||
protected String volumeSerial;
|
||||
@XmlElement(name = "VolumeName")
|
||||
protected String volumeName;
|
||||
@XmlElement(name = "FreeClusters")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger freeClusters;
|
||||
@XmlElement(name = "Dirty")
|
||||
protected boolean dirty;
|
||||
@XmlElement(name = "ExpirationDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar expirationDate;
|
||||
@XmlElement(name = "EffectiveDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar effectiveDate;
|
||||
@XmlElement(name = "SystemIdentifier")
|
||||
protected String systemIdentifier;
|
||||
@XmlElement(name = "VolumeSetIdentifier")
|
||||
protected String volumeSetIdentifier;
|
||||
@XmlElement(name = "PublisherIdentifier")
|
||||
protected String publisherIdentifier;
|
||||
@XmlElement(name = "DataPreparerIdentifier")
|
||||
protected String dataPreparerIdentifier;
|
||||
@XmlElement(name = "ApplicationIdentifier")
|
||||
protected String applicationIdentifier;
|
||||
@XmlElement(name = "Contents")
|
||||
protected FilesystemContentsType contents;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad type.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad type.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad creationDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getCreationDate() {
|
||||
return creationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad creationDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setCreationDate(XMLGregorianCalendar value) {
|
||||
this.creationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad modificationDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getModificationDate() {
|
||||
return modificationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad modificationDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setModificationDate(XMLGregorianCalendar value) {
|
||||
this.modificationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad backupDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getBackupDate() {
|
||||
return backupDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad backupDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setBackupDate(XMLGregorianCalendar value) {
|
||||
this.backupDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad clusterSize.
|
||||
*
|
||||
*/
|
||||
public long getClusterSize() {
|
||||
return clusterSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad clusterSize.
|
||||
*
|
||||
*/
|
||||
public void setClusterSize(long value) {
|
||||
this.clusterSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad clusters.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getClusters() {
|
||||
return clusters;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad clusters.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setClusters(BigInteger value) {
|
||||
this.clusters = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad files.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad files.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFiles(BigInteger value) {
|
||||
this.files = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad bootable.
|
||||
*
|
||||
*/
|
||||
public boolean isBootable() {
|
||||
return bootable;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad bootable.
|
||||
*
|
||||
*/
|
||||
public void setBootable(boolean value) {
|
||||
this.bootable = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad volumeSerial.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVolumeSerial() {
|
||||
return volumeSerial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad volumeSerial.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVolumeSerial(String value) {
|
||||
this.volumeSerial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad volumeName.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVolumeName() {
|
||||
return volumeName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad volumeName.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVolumeName(String value) {
|
||||
this.volumeName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad freeClusters.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getFreeClusters() {
|
||||
return freeClusters;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad freeClusters.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFreeClusters(BigInteger value) {
|
||||
this.freeClusters = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dirty.
|
||||
*
|
||||
*/
|
||||
public boolean isDirty() {
|
||||
return dirty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dirty.
|
||||
*
|
||||
*/
|
||||
public void setDirty(boolean value) {
|
||||
this.dirty = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad expirationDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getExpirationDate() {
|
||||
return expirationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad expirationDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setExpirationDate(XMLGregorianCalendar value) {
|
||||
this.expirationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad effectiveDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getEffectiveDate() {
|
||||
return effectiveDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad effectiveDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setEffectiveDate(XMLGregorianCalendar value) {
|
||||
this.effectiveDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad systemIdentifier.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSystemIdentifier() {
|
||||
return systemIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad systemIdentifier.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSystemIdentifier(String value) {
|
||||
this.systemIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad volumeSetIdentifier.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVolumeSetIdentifier() {
|
||||
return volumeSetIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad volumeSetIdentifier.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVolumeSetIdentifier(String value) {
|
||||
this.volumeSetIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad publisherIdentifier.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPublisherIdentifier() {
|
||||
return publisherIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad publisherIdentifier.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPublisherIdentifier(String value) {
|
||||
this.publisherIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dataPreparerIdentifier.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDataPreparerIdentifier() {
|
||||
return dataPreparerIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dataPreparerIdentifier.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDataPreparerIdentifier(String value) {
|
||||
this.dataPreparerIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad applicationIdentifier.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getApplicationIdentifier() {
|
||||
return applicationIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad applicationIdentifier.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setApplicationIdentifier(String value) {
|
||||
this.applicationIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad contents.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FilesystemContentsType }
|
||||
*
|
||||
*/
|
||||
public FilesystemContentsType getContents() {
|
||||
return contents;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad contents.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FilesystemContentsType }
|
||||
*
|
||||
*/
|
||||
public void setContents(FilesystemContentsType value) {
|
||||
this.contents = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/FileSystemsType.java
Normal file
76
CICMMetadata/java/generated/FileSystemsType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para FileSystemsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileSystemsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FileSystem" type="{}FileSystemType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileSystemsType", propOrder = {
|
||||
"fileSystem"
|
||||
})
|
||||
public class FileSystemsType {
|
||||
|
||||
@XmlElement(name = "FileSystem", required = true)
|
||||
protected List<FileSystemType> fileSystem;
|
||||
|
||||
/**
|
||||
* Gets the value of the fileSystem property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the fileSystem property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getFileSystem().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FileSystemType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FileSystemType> getFileSystem() {
|
||||
if (fileSystem == null) {
|
||||
fileSystem = new ArrayList<FileSystemType>();
|
||||
}
|
||||
return this.fileSystem;
|
||||
}
|
||||
|
||||
}
|
||||
96
CICMMetadata/java/generated/FileType.java
Normal file
96
CICMMetadata/java/generated/FileType.java
Normal file
@@ -0,0 +1,96 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* File
|
||||
*
|
||||
* <p>Clase Java para FileType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class FileType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "format")
|
||||
protected String format;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad format.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad format.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFormat(String value) {
|
||||
this.format = value;
|
||||
}
|
||||
|
||||
}
|
||||
137
CICMMetadata/java/generated/FilesystemContentsType.java
Normal file
137
CICMMetadata/java/generated/FilesystemContentsType.java
Normal file
@@ -0,0 +1,137 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para FilesystemContentsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FilesystemContentsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="File" type="{}ContentsFileType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Directory" type="{}DirectoryType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FilesystemContentsType", propOrder = {
|
||||
"file",
|
||||
"directory"
|
||||
})
|
||||
public class FilesystemContentsType {
|
||||
|
||||
@XmlElement(name = "File")
|
||||
protected List<ContentsFileType> file;
|
||||
@XmlElement(name = "Directory")
|
||||
protected List<DirectoryType> directory;
|
||||
@XmlAttribute(name = "namespace")
|
||||
protected String namespace;
|
||||
|
||||
/**
|
||||
* Gets the value of the file property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the file property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getFile().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ContentsFileType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ContentsFileType> getFile() {
|
||||
if (file == null) {
|
||||
file = new ArrayList<ContentsFileType>();
|
||||
}
|
||||
return this.file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the directory property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the directory property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDirectory().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DirectoryType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DirectoryType> getDirectory() {
|
||||
if (directory == null) {
|
||||
directory = new ArrayList<DirectoryType>();
|
||||
}
|
||||
return this.directory;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad namespace.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNamespace() {
|
||||
return namespace;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad namespace.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNamespace(String value) {
|
||||
this.namespace = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
CICMMetadata/java/generated/ImageType.java
Normal file
127
CICMMetadata/java/generated/ImageType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* File containing track dump, and format, binary, yranib, or audio/video container
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para ImageType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ImageType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ImageType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class ImageType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "format")
|
||||
protected String format;
|
||||
@XmlAttribute(name = "offset")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger offset;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad format.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad format.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFormat(String value) {
|
||||
this.format = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad offset.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad offset.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setOffset(BigInteger value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/KeywordsType.java
Normal file
76
CICMMetadata/java/generated/KeywordsType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para KeywordsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="KeywordsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "KeywordsType", propOrder = {
|
||||
"keyword"
|
||||
})
|
||||
public class KeywordsType {
|
||||
|
||||
@XmlElement(name = "Keyword", required = true)
|
||||
protected List<String> keyword;
|
||||
|
||||
/**
|
||||
* Gets the value of the keyword property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the keyword property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getKeyword().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getKeyword() {
|
||||
if (keyword == null) {
|
||||
keyword = new ArrayList<String>();
|
||||
}
|
||||
return this.keyword;
|
||||
}
|
||||
|
||||
}
|
||||
567
CICMMetadata/java/generated/LanguagesType.java
Normal file
567
CICMMetadata/java/generated/LanguagesType.java
Normal file
@@ -0,0 +1,567 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para LanguagesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LanguagesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language" maxOccurs="unbounded">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="aar"/>
|
||||
* <enumeration value="abk"/>
|
||||
* <enumeration value="ace"/>
|
||||
* <enumeration value="ach"/>
|
||||
* <enumeration value="ada"/>
|
||||
* <enumeration value="ady"/>
|
||||
* <enumeration value="afa"/>
|
||||
* <enumeration value="afh"/>
|
||||
* <enumeration value="afr"/>
|
||||
* <enumeration value="ain"/>
|
||||
* <enumeration value="aka"/>
|
||||
* <enumeration value="akk"/>
|
||||
* <enumeration value="alb"/>
|
||||
* <enumeration value="ale"/>
|
||||
* <enumeration value="alg"/>
|
||||
* <enumeration value="alt"/>
|
||||
* <enumeration value="amh"/>
|
||||
* <enumeration value="ang"/>
|
||||
* <enumeration value="anp"/>
|
||||
* <enumeration value="apa"/>
|
||||
* <enumeration value="ara"/>
|
||||
* <enumeration value="arc"/>
|
||||
* <enumeration value="arg"/>
|
||||
* <enumeration value="arm"/>
|
||||
* <enumeration value="arn"/>
|
||||
* <enumeration value="arp"/>
|
||||
* <enumeration value="art"/>
|
||||
* <enumeration value="arw"/>
|
||||
* <enumeration value="asm"/>
|
||||
* <enumeration value="ast"/>
|
||||
* <enumeration value="ath"/>
|
||||
* <enumeration value="aus"/>
|
||||
* <enumeration value="ava"/>
|
||||
* <enumeration value="ave"/>
|
||||
* <enumeration value="awa"/>
|
||||
* <enumeration value="aym"/>
|
||||
* <enumeration value="aze"/>
|
||||
* <enumeration value="bad"/>
|
||||
* <enumeration value="bai"/>
|
||||
* <enumeration value="bak"/>
|
||||
* <enumeration value="bal"/>
|
||||
* <enumeration value="bam"/>
|
||||
* <enumeration value="ban"/>
|
||||
* <enumeration value="baq"/>
|
||||
* <enumeration value="bas"/>
|
||||
* <enumeration value="bat"/>
|
||||
* <enumeration value="bej"/>
|
||||
* <enumeration value="bel"/>
|
||||
* <enumeration value="bem"/>
|
||||
* <enumeration value="ben"/>
|
||||
* <enumeration value="ber"/>
|
||||
* <enumeration value="bho"/>
|
||||
* <enumeration value="bih"/>
|
||||
* <enumeration value="bik"/>
|
||||
* <enumeration value="bin"/>
|
||||
* <enumeration value="bis"/>
|
||||
* <enumeration value="bla"/>
|
||||
* <enumeration value="bnt"/>
|
||||
* <enumeration value="bos"/>
|
||||
* <enumeration value="bra"/>
|
||||
* <enumeration value="bre"/>
|
||||
* <enumeration value="btk"/>
|
||||
* <enumeration value="bua"/>
|
||||
* <enumeration value="bug"/>
|
||||
* <enumeration value="bul"/>
|
||||
* <enumeration value="bur"/>
|
||||
* <enumeration value="byn"/>
|
||||
* <enumeration value="cad"/>
|
||||
* <enumeration value="cai"/>
|
||||
* <enumeration value="car"/>
|
||||
* <enumeration value="cat"/>
|
||||
* <enumeration value="cau"/>
|
||||
* <enumeration value="ceb"/>
|
||||
* <enumeration value="cel"/>
|
||||
* <enumeration value="cha"/>
|
||||
* <enumeration value="chb"/>
|
||||
* <enumeration value="che"/>
|
||||
* <enumeration value="chg"/>
|
||||
* <enumeration value="chi"/>
|
||||
* <enumeration value="chk"/>
|
||||
* <enumeration value="chm"/>
|
||||
* <enumeration value="chn"/>
|
||||
* <enumeration value="cho"/>
|
||||
* <enumeration value="chp"/>
|
||||
* <enumeration value="chr"/>
|
||||
* <enumeration value="chu"/>
|
||||
* <enumeration value="chv"/>
|
||||
* <enumeration value="chy"/>
|
||||
* <enumeration value="cmc"/>
|
||||
* <enumeration value="cop"/>
|
||||
* <enumeration value="cor"/>
|
||||
* <enumeration value="cos"/>
|
||||
* <enumeration value="cpe"/>
|
||||
* <enumeration value="cpf"/>
|
||||
* <enumeration value="cpp"/>
|
||||
* <enumeration value="cre"/>
|
||||
* <enumeration value="crh"/>
|
||||
* <enumeration value="crp"/>
|
||||
* <enumeration value="csb"/>
|
||||
* <enumeration value="cus"/>
|
||||
* <enumeration value="cze"/>
|
||||
* <enumeration value="dak"/>
|
||||
* <enumeration value="dan"/>
|
||||
* <enumeration value="dar"/>
|
||||
* <enumeration value="day"/>
|
||||
* <enumeration value="del"/>
|
||||
* <enumeration value="den"/>
|
||||
* <enumeration value="dgr"/>
|
||||
* <enumeration value="din"/>
|
||||
* <enumeration value="div"/>
|
||||
* <enumeration value="doi"/>
|
||||
* <enumeration value="dra"/>
|
||||
* <enumeration value="dsb"/>
|
||||
* <enumeration value="dua"/>
|
||||
* <enumeration value="dum"/>
|
||||
* <enumeration value="dut"/>
|
||||
* <enumeration value="dyu"/>
|
||||
* <enumeration value="dzo"/>
|
||||
* <enumeration value="efi"/>
|
||||
* <enumeration value="egy"/>
|
||||
* <enumeration value="eka"/>
|
||||
* <enumeration value="elx"/>
|
||||
* <enumeration value="eng"/>
|
||||
* <enumeration value="enm"/>
|
||||
* <enumeration value="epo"/>
|
||||
* <enumeration value="est"/>
|
||||
* <enumeration value="ewe"/>
|
||||
* <enumeration value="ewo"/>
|
||||
* <enumeration value="fan"/>
|
||||
* <enumeration value="fao"/>
|
||||
* <enumeration value="fat"/>
|
||||
* <enumeration value="fij"/>
|
||||
* <enumeration value="fil"/>
|
||||
* <enumeration value="fin"/>
|
||||
* <enumeration value="fiu"/>
|
||||
* <enumeration value="fon"/>
|
||||
* <enumeration value="fre"/>
|
||||
* <enumeration value="frm"/>
|
||||
* <enumeration value="fro"/>
|
||||
* <enumeration value="frr"/>
|
||||
* <enumeration value="frs"/>
|
||||
* <enumeration value="fry"/>
|
||||
* <enumeration value="ful"/>
|
||||
* <enumeration value="fur"/>
|
||||
* <enumeration value="gaa"/>
|
||||
* <enumeration value="gay"/>
|
||||
* <enumeration value="gba"/>
|
||||
* <enumeration value="gem"/>
|
||||
* <enumeration value="geo"/>
|
||||
* <enumeration value="ger"/>
|
||||
* <enumeration value="gez"/>
|
||||
* <enumeration value="gil"/>
|
||||
* <enumeration value="gla"/>
|
||||
* <enumeration value="gle"/>
|
||||
* <enumeration value="glg"/>
|
||||
* <enumeration value="glv"/>
|
||||
* <enumeration value="gmh"/>
|
||||
* <enumeration value="goh"/>
|
||||
* <enumeration value="gon"/>
|
||||
* <enumeration value="gor"/>
|
||||
* <enumeration value="got"/>
|
||||
* <enumeration value="grb"/>
|
||||
* <enumeration value="grc"/>
|
||||
* <enumeration value="gre"/>
|
||||
* <enumeration value="grn"/>
|
||||
* <enumeration value="gsw"/>
|
||||
* <enumeration value="guj"/>
|
||||
* <enumeration value="gwi"/>
|
||||
* <enumeration value="hai"/>
|
||||
* <enumeration value="hat"/>
|
||||
* <enumeration value="hau"/>
|
||||
* <enumeration value="haw"/>
|
||||
* <enumeration value="heb"/>
|
||||
* <enumeration value="her"/>
|
||||
* <enumeration value="hil"/>
|
||||
* <enumeration value="him"/>
|
||||
* <enumeration value="hin"/>
|
||||
* <enumeration value="hit"/>
|
||||
* <enumeration value="hmn"/>
|
||||
* <enumeration value="hmo"/>
|
||||
* <enumeration value="hrv"/>
|
||||
* <enumeration value="hsb"/>
|
||||
* <enumeration value="hun"/>
|
||||
* <enumeration value="hup"/>
|
||||
* <enumeration value="iba"/>
|
||||
* <enumeration value="ibo"/>
|
||||
* <enumeration value="ice"/>
|
||||
* <enumeration value="ido"/>
|
||||
* <enumeration value="iii"/>
|
||||
* <enumeration value="ijo"/>
|
||||
* <enumeration value="iku"/>
|
||||
* <enumeration value="ile"/>
|
||||
* <enumeration value="ilo"/>
|
||||
* <enumeration value="ina"/>
|
||||
* <enumeration value="inc"/>
|
||||
* <enumeration value="ind"/>
|
||||
* <enumeration value="ine"/>
|
||||
* <enumeration value="inh"/>
|
||||
* <enumeration value="ipk"/>
|
||||
* <enumeration value="ira"/>
|
||||
* <enumeration value="iro"/>
|
||||
* <enumeration value="ita"/>
|
||||
* <enumeration value="jav"/>
|
||||
* <enumeration value="jbo"/>
|
||||
* <enumeration value="jpn"/>
|
||||
* <enumeration value="jpr"/>
|
||||
* <enumeration value="jrb"/>
|
||||
* <enumeration value="kaa"/>
|
||||
* <enumeration value="kab"/>
|
||||
* <enumeration value="kac"/>
|
||||
* <enumeration value="kal"/>
|
||||
* <enumeration value="kam"/>
|
||||
* <enumeration value="kan"/>
|
||||
* <enumeration value="kar"/>
|
||||
* <enumeration value="kas"/>
|
||||
* <enumeration value="kau"/>
|
||||
* <enumeration value="kaw"/>
|
||||
* <enumeration value="kaz"/>
|
||||
* <enumeration value="kbd"/>
|
||||
* <enumeration value="kha"/>
|
||||
* <enumeration value="khi"/>
|
||||
* <enumeration value="khm"/>
|
||||
* <enumeration value="kho"/>
|
||||
* <enumeration value="kik"/>
|
||||
* <enumeration value="kin"/>
|
||||
* <enumeration value="kir"/>
|
||||
* <enumeration value="kmb"/>
|
||||
* <enumeration value="kok"/>
|
||||
* <enumeration value="kom"/>
|
||||
* <enumeration value="kon"/>
|
||||
* <enumeration value="kor"/>
|
||||
* <enumeration value="kos"/>
|
||||
* <enumeration value="kpe"/>
|
||||
* <enumeration value="krc"/>
|
||||
* <enumeration value="krl"/>
|
||||
* <enumeration value="kro"/>
|
||||
* <enumeration value="kru"/>
|
||||
* <enumeration value="kua"/>
|
||||
* <enumeration value="kum"/>
|
||||
* <enumeration value="kur"/>
|
||||
* <enumeration value="kut"/>
|
||||
* <enumeration value="lad"/>
|
||||
* <enumeration value="lah"/>
|
||||
* <enumeration value="lam"/>
|
||||
* <enumeration value="lao"/>
|
||||
* <enumeration value="lat"/>
|
||||
* <enumeration value="lav"/>
|
||||
* <enumeration value="lez"/>
|
||||
* <enumeration value="lim"/>
|
||||
* <enumeration value="lin"/>
|
||||
* <enumeration value="lit"/>
|
||||
* <enumeration value="lol"/>
|
||||
* <enumeration value="loz"/>
|
||||
* <enumeration value="ltz"/>
|
||||
* <enumeration value="lua"/>
|
||||
* <enumeration value="lub"/>
|
||||
* <enumeration value="lug"/>
|
||||
* <enumeration value="lui"/>
|
||||
* <enumeration value="lun"/>
|
||||
* <enumeration value="luo"/>
|
||||
* <enumeration value="lus"/>
|
||||
* <enumeration value="mac"/>
|
||||
* <enumeration value="mad"/>
|
||||
* <enumeration value="mag"/>
|
||||
* <enumeration value="mah"/>
|
||||
* <enumeration value="mai"/>
|
||||
* <enumeration value="mak"/>
|
||||
* <enumeration value="mal"/>
|
||||
* <enumeration value="man"/>
|
||||
* <enumeration value="mao"/>
|
||||
* <enumeration value="map"/>
|
||||
* <enumeration value="mar"/>
|
||||
* <enumeration value="mas"/>
|
||||
* <enumeration value="may"/>
|
||||
* <enumeration value="mdf"/>
|
||||
* <enumeration value="mdr"/>
|
||||
* <enumeration value="men"/>
|
||||
* <enumeration value="mga"/>
|
||||
* <enumeration value="mic"/>
|
||||
* <enumeration value="min"/>
|
||||
* <enumeration value="mis"/>
|
||||
* <enumeration value="mkh"/>
|
||||
* <enumeration value="mlg"/>
|
||||
* <enumeration value="mlt"/>
|
||||
* <enumeration value="mnc"/>
|
||||
* <enumeration value="mni"/>
|
||||
* <enumeration value="mno"/>
|
||||
* <enumeration value="moh"/>
|
||||
* <enumeration value="mon"/>
|
||||
* <enumeration value="mos"/>
|
||||
* <enumeration value="mul"/>
|
||||
* <enumeration value="mun"/>
|
||||
* <enumeration value="mus"/>
|
||||
* <enumeration value="mwl"/>
|
||||
* <enumeration value="mwr"/>
|
||||
* <enumeration value="myn"/>
|
||||
* <enumeration value="myv"/>
|
||||
* <enumeration value="nah"/>
|
||||
* <enumeration value="nai"/>
|
||||
* <enumeration value="nap"/>
|
||||
* <enumeration value="nau"/>
|
||||
* <enumeration value="nav"/>
|
||||
* <enumeration value="nbl"/>
|
||||
* <enumeration value="nde"/>
|
||||
* <enumeration value="ndo"/>
|
||||
* <enumeration value="nds"/>
|
||||
* <enumeration value="nep"/>
|
||||
* <enumeration value="new"/>
|
||||
* <enumeration value="nia"/>
|
||||
* <enumeration value="nic"/>
|
||||
* <enumeration value="niu"/>
|
||||
* <enumeration value="nno"/>
|
||||
* <enumeration value="nob"/>
|
||||
* <enumeration value="nog"/>
|
||||
* <enumeration value="non"/>
|
||||
* <enumeration value="nor"/>
|
||||
* <enumeration value="nqo"/>
|
||||
* <enumeration value="nso"/>
|
||||
* <enumeration value="nub"/>
|
||||
* <enumeration value="nwc"/>
|
||||
* <enumeration value="nya"/>
|
||||
* <enumeration value="nym"/>
|
||||
* <enumeration value="nyn"/>
|
||||
* <enumeration value="nyo"/>
|
||||
* <enumeration value="nzi"/>
|
||||
* <enumeration value="oci"/>
|
||||
* <enumeration value="oji"/>
|
||||
* <enumeration value="ori"/>
|
||||
* <enumeration value="orm"/>
|
||||
* <enumeration value="osa"/>
|
||||
* <enumeration value="oss"/>
|
||||
* <enumeration value="ota"/>
|
||||
* <enumeration value="oto"/>
|
||||
* <enumeration value="paa"/>
|
||||
* <enumeration value="pag"/>
|
||||
* <enumeration value="pal"/>
|
||||
* <enumeration value="pam"/>
|
||||
* <enumeration value="pan"/>
|
||||
* <enumeration value="pap"/>
|
||||
* <enumeration value="pau"/>
|
||||
* <enumeration value="peo"/>
|
||||
* <enumeration value="per"/>
|
||||
* <enumeration value="phi"/>
|
||||
* <enumeration value="phn"/>
|
||||
* <enumeration value="pli"/>
|
||||
* <enumeration value="pol"/>
|
||||
* <enumeration value="pon"/>
|
||||
* <enumeration value="por"/>
|
||||
* <enumeration value="pra"/>
|
||||
* <enumeration value="pro"/>
|
||||
* <enumeration value="pus"/>
|
||||
* <enumeration value="qaa-qtz"/>
|
||||
* <enumeration value="que"/>
|
||||
* <enumeration value="raj"/>
|
||||
* <enumeration value="rap"/>
|
||||
* <enumeration value="rar"/>
|
||||
* <enumeration value="roa"/>
|
||||
* <enumeration value="roh"/>
|
||||
* <enumeration value="rom"/>
|
||||
* <enumeration value="rum"/>
|
||||
* <enumeration value="run"/>
|
||||
* <enumeration value="rup"/>
|
||||
* <enumeration value="rus"/>
|
||||
* <enumeration value="sad"/>
|
||||
* <enumeration value="sag"/>
|
||||
* <enumeration value="sah"/>
|
||||
* <enumeration value="sai"/>
|
||||
* <enumeration value="sal"/>
|
||||
* <enumeration value="sam"/>
|
||||
* <enumeration value="san"/>
|
||||
* <enumeration value="sas"/>
|
||||
* <enumeration value="sat"/>
|
||||
* <enumeration value="scn"/>
|
||||
* <enumeration value="sco"/>
|
||||
* <enumeration value="sel"/>
|
||||
* <enumeration value="sem"/>
|
||||
* <enumeration value="sga"/>
|
||||
* <enumeration value="sgn"/>
|
||||
* <enumeration value="shn"/>
|
||||
* <enumeration value="sid"/>
|
||||
* <enumeration value="sin"/>
|
||||
* <enumeration value="sio"/>
|
||||
* <enumeration value="sit"/>
|
||||
* <enumeration value="sla"/>
|
||||
* <enumeration value="slo"/>
|
||||
* <enumeration value="slv"/>
|
||||
* <enumeration value="sma"/>
|
||||
* <enumeration value="sme"/>
|
||||
* <enumeration value="smi"/>
|
||||
* <enumeration value="smj"/>
|
||||
* <enumeration value="smn"/>
|
||||
* <enumeration value="smo"/>
|
||||
* <enumeration value="sms"/>
|
||||
* <enumeration value="sna"/>
|
||||
* <enumeration value="snd"/>
|
||||
* <enumeration value="snk"/>
|
||||
* <enumeration value="sog"/>
|
||||
* <enumeration value="som"/>
|
||||
* <enumeration value="son"/>
|
||||
* <enumeration value="sot"/>
|
||||
* <enumeration value="spa"/>
|
||||
* <enumeration value="srd"/>
|
||||
* <enumeration value="srn"/>
|
||||
* <enumeration value="srp"/>
|
||||
* <enumeration value="srr"/>
|
||||
* <enumeration value="ssa"/>
|
||||
* <enumeration value="ssw"/>
|
||||
* <enumeration value="suk"/>
|
||||
* <enumeration value="sun"/>
|
||||
* <enumeration value="sus"/>
|
||||
* <enumeration value="sux"/>
|
||||
* <enumeration value="swa"/>
|
||||
* <enumeration value="swe"/>
|
||||
* <enumeration value="syc"/>
|
||||
* <enumeration value="syr"/>
|
||||
* <enumeration value="tah"/>
|
||||
* <enumeration value="tai"/>
|
||||
* <enumeration value="tam"/>
|
||||
* <enumeration value="tat"/>
|
||||
* <enumeration value="tel"/>
|
||||
* <enumeration value="tem"/>
|
||||
* <enumeration value="ter"/>
|
||||
* <enumeration value="tet"/>
|
||||
* <enumeration value="tgk"/>
|
||||
* <enumeration value="tgl"/>
|
||||
* <enumeration value="tha"/>
|
||||
* <enumeration value="tib"/>
|
||||
* <enumeration value="tig"/>
|
||||
* <enumeration value="tir"/>
|
||||
* <enumeration value="tiv"/>
|
||||
* <enumeration value="tkl"/>
|
||||
* <enumeration value="tlh"/>
|
||||
* <enumeration value="tli"/>
|
||||
* <enumeration value="tmh"/>
|
||||
* <enumeration value="tog"/>
|
||||
* <enumeration value="ton"/>
|
||||
* <enumeration value="tpi"/>
|
||||
* <enumeration value="tsi"/>
|
||||
* <enumeration value="tsn"/>
|
||||
* <enumeration value="tso"/>
|
||||
* <enumeration value="tuk"/>
|
||||
* <enumeration value="tum"/>
|
||||
* <enumeration value="tup"/>
|
||||
* <enumeration value="tur"/>
|
||||
* <enumeration value="tut"/>
|
||||
* <enumeration value="tvl"/>
|
||||
* <enumeration value="twi"/>
|
||||
* <enumeration value="tyv"/>
|
||||
* <enumeration value="udm"/>
|
||||
* <enumeration value="uga"/>
|
||||
* <enumeration value="uig"/>
|
||||
* <enumeration value="ukr"/>
|
||||
* <enumeration value="umb"/>
|
||||
* <enumeration value="und"/>
|
||||
* <enumeration value="urd"/>
|
||||
* <enumeration value="uzb"/>
|
||||
* <enumeration value="vai"/>
|
||||
* <enumeration value="ven"/>
|
||||
* <enumeration value="vie"/>
|
||||
* <enumeration value="vol"/>
|
||||
* <enumeration value="vot"/>
|
||||
* <enumeration value="wak"/>
|
||||
* <enumeration value="wal"/>
|
||||
* <enumeration value="war"/>
|
||||
* <enumeration value="was"/>
|
||||
* <enumeration value="wel"/>
|
||||
* <enumeration value="wen"/>
|
||||
* <enumeration value="wln"/>
|
||||
* <enumeration value="wol"/>
|
||||
* <enumeration value="xal"/>
|
||||
* <enumeration value="xho"/>
|
||||
* <enumeration value="yao"/>
|
||||
* <enumeration value="yap"/>
|
||||
* <enumeration value="yid"/>
|
||||
* <enumeration value="yor"/>
|
||||
* <enumeration value="ypk"/>
|
||||
* <enumeration value="zap"/>
|
||||
* <enumeration value="zbl"/>
|
||||
* <enumeration value="zen"/>
|
||||
* <enumeration value="zgh"/>
|
||||
* <enumeration value="zha"/>
|
||||
* <enumeration value="znd"/>
|
||||
* <enumeration value="zul"/>
|
||||
* <enumeration value="zun"/>
|
||||
* <enumeration value="zxx"/>
|
||||
* <enumeration value="zza"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LanguagesType", propOrder = {
|
||||
"language"
|
||||
})
|
||||
public class LanguagesType {
|
||||
|
||||
@XmlElement(name = "Language", required = true)
|
||||
protected List<String> language;
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the language property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLanguage().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getLanguage() {
|
||||
if (language == null) {
|
||||
language = new ArrayList<String>();
|
||||
}
|
||||
return this.language;
|
||||
}
|
||||
|
||||
}
|
||||
100
CICMMetadata/java/generated/LayeredTextType.java
Normal file
100
CICMMetadata/java/generated/LayeredTextType.java
Normal file
@@ -0,0 +1,100 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para LayeredTextType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LayeredTextType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="layer">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="0"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LayeredTextType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class LayeredTextType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "layer")
|
||||
protected Long layer;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad layer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad layer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Long value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
111
CICMMetadata/java/generated/LayersType.java
Normal file
111
CICMMetadata/java/generated/LayersType.java
Normal file
@@ -0,0 +1,111 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para LayersType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LayersType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Sectors" type="{}SectorsType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* <attribute name="type">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="PTP"/>
|
||||
* <enumeration value="OTP"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LayersType", propOrder = {
|
||||
"sectors"
|
||||
})
|
||||
public class LayersType {
|
||||
|
||||
@XmlElement(name = "Sectors", required = true)
|
||||
protected List<SectorsType> sectors;
|
||||
@XmlAttribute(name = "type")
|
||||
protected String type;
|
||||
|
||||
/**
|
||||
* Gets the value of the sectors property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the sectors property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSectors().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link SectorsType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<SectorsType> getSectors() {
|
||||
if (sectors == null) {
|
||||
sectors = new ArrayList<SectorsType>();
|
||||
}
|
||||
return this.sectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad type.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad type.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
}
|
||||
583
CICMMetadata/java/generated/LinearMediaType.java
Normal file
583
CICMMetadata/java/generated/LinearMediaType.java
Normal file
@@ -0,0 +1,583 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Describes a dump of a linear media, that is, a media that is read byte-by-byte like for
|
||||
* example, a ROM chip, a game cartridge, a PCMCIA SRAM card, etc...
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para LinearMediaType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LinearMediaType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="ImageChecksums" type="{}ChecksumsType"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType" minOccurs="0"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="ImageInterleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Interleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Package" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Interface" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Dimensions" type="{}DimensionsType" minOccurs="0"/>
|
||||
* <element name="Scans" type="{}ScansType" minOccurs="0"/>
|
||||
* <element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
|
||||
* <element name="PCMCIA" type="{}PCMCIAType" minOccurs="0"/>
|
||||
* <element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LinearMediaType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"imageChecksums",
|
||||
"checksums",
|
||||
"partNumber",
|
||||
"serialNumber",
|
||||
"title",
|
||||
"sequence",
|
||||
"imageInterleave",
|
||||
"interleave",
|
||||
"manufacturer",
|
||||
"model",
|
||||
"_package",
|
||||
"_interface",
|
||||
"dimensions",
|
||||
"scans",
|
||||
"dumpHardwareArray",
|
||||
"pcmcia",
|
||||
"copyProtection"
|
||||
})
|
||||
public class LinearMediaType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "ImageChecksums", required = true)
|
||||
protected ChecksumsType imageChecksums;
|
||||
@XmlElement(name = "Checksums")
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "PartNumber")
|
||||
protected String partNumber;
|
||||
@XmlElement(name = "SerialNumber")
|
||||
protected String serialNumber;
|
||||
@XmlElement(name = "Title", required = true)
|
||||
protected String title;
|
||||
@XmlElement(name = "Sequence")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long sequence;
|
||||
@XmlElement(name = "ImageInterleave")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long imageInterleave;
|
||||
@XmlElement(name = "Interleave")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long interleave;
|
||||
@XmlElement(name = "Manufacturer")
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model")
|
||||
protected String model;
|
||||
@XmlElement(name = "Package", required = true)
|
||||
protected String _package;
|
||||
@XmlElement(name = "Interface")
|
||||
protected String _interface;
|
||||
@XmlElement(name = "Dimensions")
|
||||
protected DimensionsType dimensions;
|
||||
@XmlElement(name = "Scans")
|
||||
protected ScansType scans;
|
||||
@XmlElement(name = "DumpHardwareArray")
|
||||
protected DumpHardwareArrayType dumpHardwareArray;
|
||||
@XmlElement(name = "PCMCIA")
|
||||
protected PCMCIAType pcmcia;
|
||||
@XmlElement(name = "CopyProtection")
|
||||
protected String copyProtection;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad imageChecksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getImageChecksums() {
|
||||
return imageChecksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad imageChecksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setImageChecksums(ChecksumsType value) {
|
||||
this.imageChecksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad partNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPartNumber() {
|
||||
return partNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad partNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPartNumber(String value) {
|
||||
this.partNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad serialNumber.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerialNumber() {
|
||||
return serialNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad serialNumber.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerialNumber(String value) {
|
||||
this.serialNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad title.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad title.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTitle(String value) {
|
||||
this.title = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setSequence(Long value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad imageInterleave.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getImageInterleave() {
|
||||
return imageInterleave;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad imageInterleave.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setImageInterleave(Long value) {
|
||||
this.imageInterleave = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad interleave.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getInterleave() {
|
||||
return interleave;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad interleave.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setInterleave(Long value) {
|
||||
this.interleave = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad model.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad model.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setModel(String value) {
|
||||
this.model = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad package.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPackage() {
|
||||
return _package;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad package.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPackage(String value) {
|
||||
this._package = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad interface.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInterface() {
|
||||
return _interface;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad interface.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInterface(String value) {
|
||||
this._interface = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dimensions.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public DimensionsType getDimensions() {
|
||||
return dimensions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dimensions.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public void setDimensions(DimensionsType value) {
|
||||
this.dimensions = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scans.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType getScans() {
|
||||
return scans;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scans.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public void setScans(ScansType value) {
|
||||
this.scans = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dumpHardwareArray.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareArrayType getDumpHardwareArray() {
|
||||
return dumpHardwareArray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dumpHardwareArray.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public void setDumpHardwareArray(DumpHardwareArrayType value) {
|
||||
this.dumpHardwareArray = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pcmcia.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PCMCIAType }
|
||||
*
|
||||
*/
|
||||
public PCMCIAType getPCMCIA() {
|
||||
return pcmcia;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pcmcia.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PCMCIAType }
|
||||
*
|
||||
*/
|
||||
public void setPCMCIA(PCMCIAType value) {
|
||||
this.pcmcia = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad copyProtection.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCopyProtection() {
|
||||
return copyProtection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad copyProtection.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCopyProtection(String value) {
|
||||
this.copyProtection = value;
|
||||
}
|
||||
|
||||
}
|
||||
326
CICMMetadata/java/generated/MagazineType.java
Normal file
326
CICMMetadata/java/generated/MagazineType.java
Normal file
@@ -0,0 +1,326 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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>Clase Java para MagazineType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="MagazineType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
|
||||
* <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="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" 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" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long number;
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan")
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad barcodes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType getBarcodes() {
|
||||
return barcodes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad barcodes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public void setBarcodes(BarcodesType value) {
|
||||
this.barcodes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cover.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public CoverType getCover() {
|
||||
return cover;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cover.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public void setCover(CoverType value) {
|
||||
this.cover = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad editorial.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEditorial() {
|
||||
return editorial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad editorial.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEditorial(String value) {
|
||||
this.editorial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad publicationDate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getPublicationDate() {
|
||||
return publicationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad publicationDate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setPublicationDate(XMLGregorianCalendar value) {
|
||||
this.publicationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad number.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad number.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setNumber(Long value) {
|
||||
this.number = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad language.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad language.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pages.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pages.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setPages(Long value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pageSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pageSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPageSize(String value) {
|
||||
this.pageSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
108
CICMMetadata/java/generated/MediaScanType.java
Normal file
108
CICMMetadata/java/generated/MediaScanType.java
Normal file
@@ -0,0 +1,108 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para MediaScanType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="MediaScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MediaScanElement">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="up"/>
|
||||
* <enumeration value="down"/>
|
||||
* <enumeration value="front"/>
|
||||
* <enumeration value="back"/>
|
||||
* <enumeration value="left"/>
|
||||
* <enumeration value="right"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "MediaScanType", propOrder = {
|
||||
"mediaScanElement",
|
||||
"scan"
|
||||
})
|
||||
public class MediaScanType {
|
||||
|
||||
@XmlElement(name = "MediaScanElement", required = true)
|
||||
protected String mediaScanElement;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad mediaScanElement.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMediaScanElement() {
|
||||
return mediaScanElement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad mediaScanElement.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMediaScanElement(String value) {
|
||||
this.mediaScanElement = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
155
CICMMetadata/java/generated/MultiMediaCardType.java
Normal file
155
CICMMetadata/java/generated/MultiMediaCardType.java
Normal file
@@ -0,0 +1,155 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Contains MultiMediaCard device information
|
||||
*
|
||||
* <p>Clase Java para MultiMediaCardType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="MultiMediaCardType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CID" type="{}DumpType"/>
|
||||
* <element name="CSD" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="ExtendedCSD" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="OCR" type="{}DumpType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "MultiMediaCardType", propOrder = {
|
||||
"cid",
|
||||
"csd",
|
||||
"extendedCSD",
|
||||
"ocr"
|
||||
})
|
||||
public class MultiMediaCardType {
|
||||
|
||||
@XmlElement(name = "CID", required = true)
|
||||
protected DumpType cid;
|
||||
@XmlElement(name = "CSD")
|
||||
protected DumpType csd;
|
||||
@XmlElement(name = "ExtendedCSD")
|
||||
protected DumpType extendedCSD;
|
||||
@XmlElement(name = "OCR")
|
||||
protected DumpType ocr;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cid.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getCID() {
|
||||
return cid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cid.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setCID(DumpType value) {
|
||||
this.cid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad csd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getCSD() {
|
||||
return csd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad csd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setCSD(DumpType value) {
|
||||
this.csd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad extendedCSD.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getExtendedCSD() {
|
||||
return extendedCSD;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad extendedCSD.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setExtendedCSD(DumpType value) {
|
||||
this.extendedCSD = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad ocr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getOCR() {
|
||||
return ocr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad ocr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setOCR(DumpType value) {
|
||||
this.ocr = value;
|
||||
}
|
||||
|
||||
}
|
||||
153
CICMMetadata/java/generated/OCRType.java
Normal file
153
CICMMetadata/java/generated/OCRType.java
Normal file
@@ -0,0 +1,153 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para OCRType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OCRType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Language" type="{}LanguagesType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OCRType", propOrder = {
|
||||
"author",
|
||||
"software",
|
||||
"softwareVersion",
|
||||
"language"
|
||||
})
|
||||
public class OCRType {
|
||||
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected String software;
|
||||
@XmlElement(name = "SoftwareVersion", required = true)
|
||||
protected String softwareVersion;
|
||||
@XmlElement(name = "Language", required = true)
|
||||
protected LanguagesType language;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad author.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad author.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad software.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad software.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(String value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad softwareVersion.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftwareVersion() {
|
||||
return softwareVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad softwareVersion.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftwareVersion(String value) {
|
||||
this.softwareVersion = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad language.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad language.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
}
|
||||
716
CICMMetadata/java/generated/ObjectFactory.java
Normal file
716
CICMMetadata/java/generated/ObjectFactory.java
Normal file
@@ -0,0 +1,716 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlElementDecl;
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the generated package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
private final static QName _CICMMetadata_QNAME = new QName("", "CICMMetadata");
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: generated
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CICMMetadataType }
|
||||
*
|
||||
*/
|
||||
public CICMMetadataType createCICMMetadataType() {
|
||||
return new CICMMetadataType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VideoTracksType }
|
||||
*
|
||||
*/
|
||||
public VideoTracksType createVideoTracksType() {
|
||||
return new VideoTracksType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public CoverType createCoverType() {
|
||||
return new CoverType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ExtentsType }
|
||||
*
|
||||
*/
|
||||
public ExtentsType createExtentsType() {
|
||||
return new ExtentsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileSystemInformationType }
|
||||
*
|
||||
*/
|
||||
public FileSystemInformationType createFileSystemInformationType() {
|
||||
return new FileSystemInformationType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SecuritySectorsType }
|
||||
*
|
||||
*/
|
||||
public SecuritySectorsType createSecuritySectorsType() {
|
||||
return new SecuritySectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DumpHardwareType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareType createDumpHardwareType() {
|
||||
return new DumpHardwareType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ArchitecturesType }
|
||||
*
|
||||
*/
|
||||
public ArchitecturesType createArchitecturesType() {
|
||||
return new ArchitecturesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileSystemsType }
|
||||
*
|
||||
*/
|
||||
public FileSystemsType createFileSystemsType() {
|
||||
return new FileSystemsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ChecksumType }
|
||||
*
|
||||
*/
|
||||
public ChecksumType createChecksumType() {
|
||||
return new ChecksumType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SoftwareType }
|
||||
*
|
||||
*/
|
||||
public SoftwareType createSoftwareType() {
|
||||
return new SoftwareType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType createImageType() {
|
||||
return new ImageType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubtitleTracksType }
|
||||
*
|
||||
*/
|
||||
public SubtitleTracksType createSubtitleTracksType() {
|
||||
return new SubtitleTracksType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DirectoryType }
|
||||
*
|
||||
*/
|
||||
public DirectoryType createDirectoryType() {
|
||||
return new DirectoryType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackIndexesType }
|
||||
*
|
||||
*/
|
||||
public TrackIndexesType createTrackIndexesType() {
|
||||
return new TrackIndexesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareArrayType createDumpHardwareArrayType() {
|
||||
return new DumpHardwareArrayType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubChannelType }
|
||||
*
|
||||
*/
|
||||
public SubChannelType createSubChannelType() {
|
||||
return new SubChannelType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link MediaScanType }
|
||||
*
|
||||
*/
|
||||
public MediaScanType createMediaScanType() {
|
||||
return new MediaScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SCSIType }
|
||||
*
|
||||
*/
|
||||
public SCSIType createSCSIType() {
|
||||
return new SCSIType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScanProcessingType }
|
||||
*
|
||||
*/
|
||||
public ScanProcessingType createScanProcessingType() {
|
||||
return new ScanProcessingType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RecordingType }
|
||||
*
|
||||
*/
|
||||
public RecordingType createRecordingType() {
|
||||
return new RecordingType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LinearMediaType }
|
||||
*
|
||||
*/
|
||||
public LinearMediaType createLinearMediaType() {
|
||||
return new LinearMediaType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FilesystemContentsType }
|
||||
*
|
||||
*/
|
||||
public FilesystemContentsType createFilesystemContentsType() {
|
||||
return new FilesystemContentsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemType createRequiredOperatingSystemType() {
|
||||
return new RequiredOperatingSystemType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RequiredOperatingSystemsType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemsType createRequiredOperatingSystemsType() {
|
||||
return new RequiredOperatingSystemsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SecureDigitalType }
|
||||
*
|
||||
*/
|
||||
public SecureDigitalType createSecureDigitalType() {
|
||||
return new SecureDigitalType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TapeInformationType }
|
||||
*
|
||||
*/
|
||||
public TapeInformationType createTapeInformationType() {
|
||||
return new TapeInformationType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackIndexType }
|
||||
*
|
||||
*/
|
||||
public TrackIndexType createTrackIndexType() {
|
||||
return new TrackIndexType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VariableBlockSizeType }
|
||||
*
|
||||
*/
|
||||
public VariableBlockSizeType createVariableBlockSizeType() {
|
||||
return new VariableBlockSizeType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BlockTrackType }
|
||||
*
|
||||
*/
|
||||
public BlockTrackType createBlockTrackType() {
|
||||
return new BlockTrackType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SystemsType }
|
||||
*
|
||||
*/
|
||||
public SystemsType createSystemsType() {
|
||||
return new SystemsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackSequenceType }
|
||||
*
|
||||
*/
|
||||
public TrackSequenceType createTrackSequenceType() {
|
||||
return new TrackSequenceType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TapePartitionType }
|
||||
*
|
||||
*/
|
||||
public TapePartitionType createTapePartitionType() {
|
||||
return new TapePartitionType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PartitionType }
|
||||
*
|
||||
*/
|
||||
public PartitionType createPartitionType() {
|
||||
return new PartitionType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CaseScanType }
|
||||
*
|
||||
*/
|
||||
public CaseScanType createCaseScanType() {
|
||||
return new CaseScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TapeFileType }
|
||||
*
|
||||
*/
|
||||
public TapeFileType createTapeFileType() {
|
||||
return new TapeFileType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType createScanType() {
|
||||
return new ScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link KeywordsType }
|
||||
*
|
||||
*/
|
||||
public KeywordsType createKeywordsType() {
|
||||
return new KeywordsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BookType }
|
||||
*
|
||||
*/
|
||||
public BookType createBookType() {
|
||||
return new BookType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubcategoriesType }
|
||||
*
|
||||
*/
|
||||
public SubcategoriesType createSubcategoriesType() {
|
||||
return new SubcategoriesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CaseType }
|
||||
*
|
||||
*/
|
||||
public CaseType createCaseType() {
|
||||
return new CaseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link MagazineType }
|
||||
*
|
||||
*/
|
||||
public MagazineType createMagazineType() {
|
||||
return new MagazineType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType createDumpType() {
|
||||
return new DumpType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackFlagsType }
|
||||
*
|
||||
*/
|
||||
public TrackFlagsType createTrackFlagsType() {
|
||||
return new TrackFlagsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LayersType }
|
||||
*
|
||||
*/
|
||||
public LayersType createLayersType() {
|
||||
return new LayersType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CategoriesType }
|
||||
*
|
||||
*/
|
||||
public CategoriesType createCategoriesType() {
|
||||
return new CategoriesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BarcodeType }
|
||||
*
|
||||
*/
|
||||
public BarcodeType createBarcodeType() {
|
||||
return new BarcodeType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BorderType }
|
||||
*
|
||||
*/
|
||||
public BorderType createBorderType() {
|
||||
return new BorderType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ATAType }
|
||||
*
|
||||
*/
|
||||
public ATAType createATAType() {
|
||||
return new ATAType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType createLanguagesType() {
|
||||
return new LanguagesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType createChecksumsType() {
|
||||
return new ChecksumsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScannerType }
|
||||
*
|
||||
*/
|
||||
public ScannerType createScannerType() {
|
||||
return new ScannerType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SequenceType }
|
||||
*
|
||||
*/
|
||||
public SequenceType createSequenceType() {
|
||||
return new SequenceType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link EVPDType }
|
||||
*
|
||||
*/
|
||||
public EVPDType createEVPDType() {
|
||||
return new EVPDType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BlockSizeType }
|
||||
*
|
||||
*/
|
||||
public BlockSizeType createBlockSizeType() {
|
||||
return new BlockSizeType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OpticalDiscType }
|
||||
*
|
||||
*/
|
||||
public OpticalDiscType createOpticalDiscType() {
|
||||
return new OpticalDiscType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OCRType }
|
||||
*
|
||||
*/
|
||||
public OCRType createOCRType() {
|
||||
return new OCRType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ExtentType }
|
||||
*
|
||||
*/
|
||||
public ExtentType createExtentType() {
|
||||
return new ExtentType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ExtendedAttributeType }
|
||||
*
|
||||
*/
|
||||
public ExtendedAttributeType createExtendedAttributeType() {
|
||||
return new ExtendedAttributeType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link XboxSecuritySectorsType }
|
||||
*
|
||||
*/
|
||||
public XboxSecuritySectorsType createXboxSecuritySectorsType() {
|
||||
return new XboxSecuritySectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PCMCIAType }
|
||||
*
|
||||
*/
|
||||
public PCMCIAType createPCMCIAType() {
|
||||
return new PCMCIAType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType createScansType() {
|
||||
return new ScansType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PCIType }
|
||||
*
|
||||
*/
|
||||
public PCIType createPCIType() {
|
||||
return new PCIType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link USBType }
|
||||
*
|
||||
*/
|
||||
public USBType createUSBType() {
|
||||
return new USBType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link MultiMediaCardType }
|
||||
*
|
||||
*/
|
||||
public MultiMediaCardType createMultiMediaCardType() {
|
||||
return new MultiMediaCardType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link UserManualType }
|
||||
*
|
||||
*/
|
||||
public UserManualType createUserManualType() {
|
||||
return new UserManualType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AdvertisementType }
|
||||
*
|
||||
*/
|
||||
public AdvertisementType createAdvertisementType() {
|
||||
return new AdvertisementType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType createBarcodesType() {
|
||||
return new BarcodesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AudioMediaType }
|
||||
*
|
||||
*/
|
||||
public AudioMediaType createAudioMediaType() {
|
||||
return new AudioMediaType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ExtendedAttributesType }
|
||||
*
|
||||
*/
|
||||
public ExtendedAttributesType createExtendedAttributesType() {
|
||||
return new ExtendedAttributesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CoordinatesType }
|
||||
*
|
||||
*/
|
||||
public CoordinatesType createCoordinatesType() {
|
||||
return new CoordinatesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ContentsFileType }
|
||||
*
|
||||
*/
|
||||
public ContentsFileType createContentsFileType() {
|
||||
return new ContentsFileType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SectorsType }
|
||||
*
|
||||
*/
|
||||
public SectorsType createSectorsType() {
|
||||
return new SectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AudioTracksType }
|
||||
*
|
||||
*/
|
||||
public AudioTracksType createAudioTracksType() {
|
||||
return new AudioTracksType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LayeredTextType }
|
||||
*
|
||||
*/
|
||||
public LayeredTextType createLayeredTextType() {
|
||||
return new LayeredTextType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BlockMediaType }
|
||||
*
|
||||
*/
|
||||
public BlockMediaType createBlockMediaType() {
|
||||
return new BlockMediaType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType createFileType() {
|
||||
return new FileType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public DimensionsType createDimensionsType() {
|
||||
return new DimensionsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackType }
|
||||
*
|
||||
*/
|
||||
public TrackType createTrackType() {
|
||||
return new TrackType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileSystemType }
|
||||
*
|
||||
*/
|
||||
public FileSystemType createFileSystemType() {
|
||||
return new FileSystemType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link XboxType }
|
||||
*
|
||||
*/
|
||||
public XboxType createXboxType() {
|
||||
return new XboxType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PS3EncryptionType }
|
||||
*
|
||||
*/
|
||||
public PS3EncryptionType createPS3EncryptionType() {
|
||||
return new PS3EncryptionType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AudioBlockType }
|
||||
*
|
||||
*/
|
||||
public AudioBlockType createAudioBlockType() {
|
||||
return new AudioBlockType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link CICMMetadataType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "", name = "CICMMetadata")
|
||||
public JAXBElement<CICMMetadataType> createCICMMetadata(CICMMetadataType value) {
|
||||
return new JAXBElement<CICMMetadataType>(_CICMMetadata_QNAME, CICMMetadataType.class, null, value);
|
||||
}
|
||||
|
||||
}
|
||||
1406
CICMMetadata/java/generated/OpticalDiscType.java
Normal file
1406
CICMMetadata/java/generated/OpticalDiscType.java
Normal file
File diff suppressed because it is too large
Load Diff
153
CICMMetadata/java/generated/PCIType.java
Normal file
153
CICMMetadata/java/generated/PCIType.java
Normal file
@@ -0,0 +1,153 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Contains PCI/PCI-X/PCIe card information
|
||||
*
|
||||
* <p>Clase Java para PCIType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PCIType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="VendorID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="DeviceID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Configuration" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="ExpansionROM" type="{}LinearMediaType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PCIType", propOrder = {
|
||||
"vendorID",
|
||||
"deviceID",
|
||||
"configuration",
|
||||
"expansionROM"
|
||||
})
|
||||
public class PCIType {
|
||||
|
||||
@XmlElement(name = "VendorID")
|
||||
protected int vendorID;
|
||||
@XmlElement(name = "DeviceID")
|
||||
protected int deviceID;
|
||||
@XmlElement(name = "Configuration")
|
||||
protected DumpType configuration;
|
||||
@XmlElement(name = "ExpansionROM")
|
||||
protected LinearMediaType expansionROM;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad vendorID.
|
||||
*
|
||||
*/
|
||||
public int getVendorID() {
|
||||
return vendorID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad vendorID.
|
||||
*
|
||||
*/
|
||||
public void setVendorID(int value) {
|
||||
this.vendorID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad deviceID.
|
||||
*
|
||||
*/
|
||||
public int getDeviceID() {
|
||||
return deviceID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad deviceID.
|
||||
*
|
||||
*/
|
||||
public void setDeviceID(int value) {
|
||||
this.deviceID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad configuration.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getConfiguration() {
|
||||
return configuration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad configuration.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setConfiguration(DumpType value) {
|
||||
this.configuration = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad expansionROM.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LinearMediaType }
|
||||
*
|
||||
*/
|
||||
public LinearMediaType getExpansionROM() {
|
||||
return expansionROM;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad expansionROM.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LinearMediaType }
|
||||
*
|
||||
*/
|
||||
public void setExpansionROM(LinearMediaType value) {
|
||||
this.expansionROM = value;
|
||||
}
|
||||
|
||||
}
|
||||
249
CICMMetadata/java/generated/PCMCIAType.java
Normal file
249
CICMMetadata/java/generated/PCMCIAType.java
Normal file
@@ -0,0 +1,249 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Contains PCMCIA card information
|
||||
*
|
||||
* <p>Clase Java para PCMCIAType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PCMCIAType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CIS" type="{}DumpType"/>
|
||||
* <element name="Compliance" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ManufacturerCode" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||
* <element name="CardCode" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ProductName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="AdditionalInformation" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PCMCIAType", propOrder = {
|
||||
"cis",
|
||||
"compliance",
|
||||
"manufacturerCode",
|
||||
"cardCode",
|
||||
"manufacturer",
|
||||
"productName",
|
||||
"additionalInformation"
|
||||
})
|
||||
public class PCMCIAType {
|
||||
|
||||
@XmlElement(name = "CIS", required = true)
|
||||
protected DumpType cis;
|
||||
@XmlElement(name = "Compliance")
|
||||
protected String compliance;
|
||||
@XmlElement(name = "ManufacturerCode")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer manufacturerCode;
|
||||
@XmlElement(name = "CardCode")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer cardCode;
|
||||
@XmlElement(name = "Manufacturer")
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "ProductName")
|
||||
protected String productName;
|
||||
@XmlElement(name = "AdditionalInformation")
|
||||
protected List<String> additionalInformation;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cis.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getCIS() {
|
||||
return cis;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cis.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setCIS(DumpType value) {
|
||||
this.cis = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad compliance.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCompliance() {
|
||||
return compliance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad compliance.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCompliance(String value) {
|
||||
this.compliance = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturerCode.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getManufacturerCode() {
|
||||
return manufacturerCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturerCode.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setManufacturerCode(Integer value) {
|
||||
this.manufacturerCode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cardCode.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getCardCode() {
|
||||
return cardCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cardCode.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setCardCode(Integer value) {
|
||||
this.cardCode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad productName.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad productName.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setProductName(String value) {
|
||||
this.productName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the additionalInformation property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the additionalInformation property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAdditionalInformation().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getAdditionalInformation() {
|
||||
if (additionalInformation == null) {
|
||||
additionalInformation = new ArrayList<String>();
|
||||
}
|
||||
return this.additionalInformation;
|
||||
}
|
||||
|
||||
}
|
||||
97
CICMMetadata/java/generated/PS3EncryptionType.java
Normal file
97
CICMMetadata/java/generated/PS3EncryptionType.java
Normal file
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para PS3EncryptionType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PS3EncryptionType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PS3EncryptionType", propOrder = {
|
||||
"key",
|
||||
"serial"
|
||||
})
|
||||
public class PS3EncryptionType {
|
||||
|
||||
@XmlElement(name = "Key", required = true)
|
||||
protected String key;
|
||||
@XmlElement(name = "Serial", required = true)
|
||||
protected String serial;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad key.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad key.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKey(String value) {
|
||||
this.key = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad serial.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerial() {
|
||||
return serial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad serial.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerial(String value) {
|
||||
this.serial = value;
|
||||
}
|
||||
|
||||
}
|
||||
239
CICMMetadata/java/generated/PartitionType.java
Normal file
239
CICMMetadata/java/generated/PartitionType.java
Normal file
@@ -0,0 +1,239 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para PartitionType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PartitionType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Sequence">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FileSystems" type="{}FileSystemsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PartitionType", propOrder = {
|
||||
"sequence",
|
||||
"name",
|
||||
"type",
|
||||
"startSector",
|
||||
"endSector",
|
||||
"description",
|
||||
"fileSystems"
|
||||
})
|
||||
public class PartitionType {
|
||||
|
||||
@XmlElement(name = "Sequence")
|
||||
protected long sequence;
|
||||
@XmlElement(name = "Name")
|
||||
protected String name;
|
||||
@XmlElement(name = "Type")
|
||||
protected String type;
|
||||
@XmlElement(name = "StartSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startSector;
|
||||
@XmlElement(name = "EndSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endSector;
|
||||
@XmlElement(name = "Description")
|
||||
protected String description;
|
||||
@XmlElement(name = "FileSystems", required = true)
|
||||
protected FileSystemsType fileSystems;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
*/
|
||||
public long getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
*/
|
||||
public void setSequence(long value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad type.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad type.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartSector(BigInteger value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndSector(BigInteger value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad description.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad description.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
this.description = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad fileSystems.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileSystemsType }
|
||||
*
|
||||
*/
|
||||
public FileSystemsType getFileSystems() {
|
||||
return fileSystems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad fileSystems.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileSystemsType }
|
||||
*
|
||||
*/
|
||||
public void setFileSystems(FileSystemsType value) {
|
||||
this.fileSystems = value;
|
||||
}
|
||||
|
||||
}
|
||||
292
CICMMetadata/java/generated/RecordingType.java
Normal file
292
CICMMetadata/java/generated/RecordingType.java
Normal file
@@ -0,0 +1,292 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
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 RecordingType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="RecordingType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Broadcaster" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="BroadcastPlatform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SourceFormat">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="ITU-A"/>
|
||||
* <enumeration value="ITU-B"/>
|
||||
* <enumeration value="ITU-C"/>
|
||||
* <enumeration value="ITU-D"/>
|
||||
* <enumeration value="ITU-E"/>
|
||||
* <enumeration value="ITU-F"/>
|
||||
* <enumeration value="ITU-G"/>
|
||||
* <enumeration value="ITU-H"/>
|
||||
* <enumeration value="ITU-I"/>
|
||||
* <enumeration value="ITU-J"/>
|
||||
* <enumeration value="ITU-K"/>
|
||||
* <enumeration value="ITU-L"/>
|
||||
* <enumeration value="ITU-M"/>
|
||||
* <enumeration value="ITU-N"/>
|
||||
* <enumeration value="PAL-B"/>
|
||||
* <enumeration value="SECAM-B"/>
|
||||
* <enumeration value="PAL-D"/>
|
||||
* <enumeration value="SECAM-D"/>
|
||||
* <enumeration value="PAL-G"/>
|
||||
* <enumeration value="SECAM-G"/>
|
||||
* <enumeration value="PAL-H"/>
|
||||
* <enumeration value="PAL-I"/>
|
||||
* <enumeration value="PAL-K"/>
|
||||
* <enumeration value="SECAM-K"/>
|
||||
* <enumeration value="NTSC-M"/>
|
||||
* <enumeration value="PAL-N"/>
|
||||
* <enumeration value="PAL-M"/>
|
||||
* <enumeration value="SECAM-M"/>
|
||||
* <enumeration value="MUSE"/>
|
||||
* <enumeration value="PALplus"/>
|
||||
* <enumeration value="FM"/>
|
||||
* <enumeration value="AM"/>
|
||||
* <enumeration value="COFDM"/>
|
||||
* <enumeration value="CAM-D"/>
|
||||
* <enumeration value="DAB"/>
|
||||
* <enumeration value="DAB+"/>
|
||||
* <enumeration value="DRM"/>
|
||||
* <enumeration value="DRM+"/>
|
||||
* <enumeration value="FMeXtra"/>
|
||||
* <enumeration value="ATSC"/>
|
||||
* <enumeration value="ATSC2"/>
|
||||
* <enumeration value="ATSC3"/>
|
||||
* <enumeration value="ATSC-M/H"/>
|
||||
* <enumeration value="DVB-T"/>
|
||||
* <enumeration value="DVB-T2"/>
|
||||
* <enumeration value="DVB-S"/>
|
||||
* <enumeration value="DVB-S2"/>
|
||||
* <enumeration value="DVB-S2X"/>
|
||||
* <enumeration value="DVB-C"/>
|
||||
* <enumeration value="DVB-C2"/>
|
||||
* <enumeration value="DVB-H"/>
|
||||
* <enumeration value="DVB-NGH"/>
|
||||
* <enumeration value="DVB-SH"/>
|
||||
* <enumeration value="ISDB-T"/>
|
||||
* <enumeration value="ISDB-Tb"/>
|
||||
* <enumeration value="ISDB-S"/>
|
||||
* <enumeration value="ISDB-C"/>
|
||||
* <enumeration value="1seg"/>
|
||||
* <enumeration value="DTMB"/>
|
||||
* <enumeration value="CCMB"/>
|
||||
* <enumeration value="T-DMB"/>
|
||||
* <enumeration value="S-DMB"/>
|
||||
* <enumeration value="IPTV"/>
|
||||
* <enumeration value="DVB-MT"/>
|
||||
* <enumeration value="DVB-MC"/>
|
||||
* <enumeration value="DVB-MS"/>
|
||||
* <enumeration value="ADR"/>
|
||||
* <enumeration value="SDR"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
|
||||
* <element name="Software" type="{}SoftwareType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Coordinates" type="{}CoordinatesType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "RecordingType", propOrder = {
|
||||
"broadcaster",
|
||||
"broadcastPlatform",
|
||||
"sourceFormat",
|
||||
"timestamp",
|
||||
"software",
|
||||
"coordinates"
|
||||
})
|
||||
public class RecordingType {
|
||||
|
||||
@XmlElement(name = "Broadcaster")
|
||||
protected String broadcaster;
|
||||
@XmlElement(name = "BroadcastPlatform")
|
||||
protected String broadcastPlatform;
|
||||
@XmlElement(name = "SourceFormat", required = true)
|
||||
protected String sourceFormat;
|
||||
@XmlElement(name = "Timestamp", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar timestamp;
|
||||
@XmlElement(name = "Software")
|
||||
protected List<SoftwareType> software;
|
||||
@XmlElement(name = "Coordinates")
|
||||
protected CoordinatesType coordinates;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad broadcaster.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBroadcaster() {
|
||||
return broadcaster;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad broadcaster.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBroadcaster(String value) {
|
||||
this.broadcaster = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad broadcastPlatform.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBroadcastPlatform() {
|
||||
return broadcastPlatform;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad broadcastPlatform.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBroadcastPlatform(String value) {
|
||||
this.broadcastPlatform = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sourceFormat.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSourceFormat() {
|
||||
return sourceFormat;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sourceFormat.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSourceFormat(String value) {
|
||||
this.sourceFormat = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad timestamp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getTimestamp() {
|
||||
return timestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad timestamp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setTimestamp(XMLGregorianCalendar value) {
|
||||
this.timestamp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the software property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the software property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSoftware().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link SoftwareType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<SoftwareType> getSoftware() {
|
||||
if (software == null) {
|
||||
software = new ArrayList<SoftwareType>();
|
||||
}
|
||||
return this.software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad coordinates.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CoordinatesType }
|
||||
*
|
||||
*/
|
||||
public CoordinatesType getCoordinates() {
|
||||
return coordinates;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad coordinates.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CoordinatesType }
|
||||
*
|
||||
*/
|
||||
public void setCoordinates(CoordinatesType value) {
|
||||
this.coordinates = value;
|
||||
}
|
||||
|
||||
}
|
||||
104
CICMMetadata/java/generated/RequiredOperatingSystemType.java
Normal file
104
CICMMetadata/java/generated/RequiredOperatingSystemType.java
Normal file
@@ -0,0 +1,104 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para RequiredOperatingSystemType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="RequiredOperatingSystemType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "RequiredOperatingSystemType", propOrder = {
|
||||
"name",
|
||||
"version"
|
||||
})
|
||||
public class RequiredOperatingSystemType {
|
||||
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version", required = true)
|
||||
protected List<String> version;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the version property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the version property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVersion().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getVersion() {
|
||||
if (version == null) {
|
||||
version = new ArrayList<String>();
|
||||
}
|
||||
return this.version;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para RequiredOperatingSystemsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="RequiredOperatingSystemsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RequiredOperatingSystem" type="{}RequiredOperatingSystemType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "RequiredOperatingSystemsType", propOrder = {
|
||||
"requiredOperatingSystem"
|
||||
})
|
||||
public class RequiredOperatingSystemsType {
|
||||
|
||||
@XmlElement(name = "RequiredOperatingSystem", required = true)
|
||||
protected List<RequiredOperatingSystemType> requiredOperatingSystem;
|
||||
|
||||
/**
|
||||
* Gets the value of the requiredOperatingSystem property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the requiredOperatingSystem property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRequiredOperatingSystem().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<RequiredOperatingSystemType> getRequiredOperatingSystem() {
|
||||
if (requiredOperatingSystem == null) {
|
||||
requiredOperatingSystem = new ArrayList<RequiredOperatingSystemType>();
|
||||
}
|
||||
return this.requiredOperatingSystem;
|
||||
}
|
||||
|
||||
}
|
||||
190
CICMMetadata/java/generated/SCSIType.java
Normal file
190
CICMMetadata/java/generated/SCSIType.java
Normal file
@@ -0,0 +1,190 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Contains SCSI device information
|
||||
*
|
||||
* <p>Clase Java para SCSIType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SCSIType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Inquiry" type="{}DumpType"/>
|
||||
* <element name="EVPD" type="{}EVPDType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="ModeSense" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="ModeSense10" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="LogSense" type="{}DumpType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SCSIType", propOrder = {
|
||||
"inquiry",
|
||||
"evpd",
|
||||
"modeSense",
|
||||
"modeSense10",
|
||||
"logSense"
|
||||
})
|
||||
public class SCSIType {
|
||||
|
||||
@XmlElement(name = "Inquiry", required = true)
|
||||
protected DumpType inquiry;
|
||||
@XmlElement(name = "EVPD")
|
||||
protected List<EVPDType> evpd;
|
||||
@XmlElement(name = "ModeSense")
|
||||
protected DumpType modeSense;
|
||||
@XmlElement(name = "ModeSense10")
|
||||
protected DumpType modeSense10;
|
||||
@XmlElement(name = "LogSense")
|
||||
protected DumpType logSense;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad inquiry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getInquiry() {
|
||||
return inquiry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad inquiry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setInquiry(DumpType value) {
|
||||
this.inquiry = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the evpd property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the evpd property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEVPD().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link EVPDType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<EVPDType> getEVPD() {
|
||||
if (evpd == null) {
|
||||
evpd = new ArrayList<EVPDType>();
|
||||
}
|
||||
return this.evpd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad modeSense.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getModeSense() {
|
||||
return modeSense;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad modeSense.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setModeSense(DumpType value) {
|
||||
this.modeSense = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad modeSense10.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getModeSense10() {
|
||||
return modeSense10;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad modeSense10.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setModeSense10(DumpType value) {
|
||||
this.modeSense10 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad logSense.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getLogSense() {
|
||||
return logSense;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad logSense.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setLogSense(DumpType value) {
|
||||
this.logSense = value;
|
||||
}
|
||||
|
||||
}
|
||||
128
CICMMetadata/java/generated/ScanProcessingType.java
Normal file
128
CICMMetadata/java/generated/ScanProcessingType.java
Normal file
@@ -0,0 +1,128 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Information about any scan processing done
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para ScanProcessingType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScanProcessingType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScanProcessingType", propOrder = {
|
||||
"author",
|
||||
"software",
|
||||
"softwareVersion"
|
||||
})
|
||||
public class ScanProcessingType {
|
||||
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected String software;
|
||||
@XmlElement(name = "SoftwareVersion", required = true)
|
||||
protected String softwareVersion;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad author.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad author.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad software.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad software.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(String value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad softwareVersion.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftwareVersion() {
|
||||
return softwareVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad softwareVersion.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftwareVersion(String value) {
|
||||
this.softwareVersion = value;
|
||||
}
|
||||
|
||||
}
|
||||
198
CICMMetadata/java/generated/ScanType.java
Normal file
198
CICMMetadata/java/generated/ScanType.java
Normal file
@@ -0,0 +1,198 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ScanType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="File" type="{}FileType"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Scanner" type="{}ScannerType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="ScanProcessing" type="{}ScanProcessingType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="OCR" type="{}OCRType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScanType", propOrder = {
|
||||
"file",
|
||||
"checksums",
|
||||
"scanner",
|
||||
"scanProcessing",
|
||||
"ocr"
|
||||
})
|
||||
public class ScanType {
|
||||
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected FileType file;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Scanner")
|
||||
protected List<ScannerType> scanner;
|
||||
@XmlElement(name = "ScanProcessing")
|
||||
protected List<ScanProcessingType> scanProcessing;
|
||||
@XmlElement(name = "OCR")
|
||||
protected List<OCRType> ocr;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad file.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad file.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public void setFile(FileType value) {
|
||||
this.file = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scanner property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the scanner property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getScanner().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ScannerType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ScannerType> getScanner() {
|
||||
if (scanner == null) {
|
||||
scanner = new ArrayList<ScannerType>();
|
||||
}
|
||||
return this.scanner;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scanProcessing property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the scanProcessing property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getScanProcessing().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ScanProcessingType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ScanProcessingType> getScanProcessing() {
|
||||
if (scanProcessing == null) {
|
||||
scanProcessing = new ArrayList<ScanProcessingType>();
|
||||
}
|
||||
return this.scanProcessing;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ocr property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the ocr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOCR().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link OCRType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<OCRType> getOCR() {
|
||||
if (ocr == null) {
|
||||
ocr = new ArrayList<OCRType>();
|
||||
}
|
||||
return this.ocr;
|
||||
}
|
||||
|
||||
}
|
||||
211
CICMMetadata/java/generated/ScannerType.java
Normal file
211
CICMMetadata/java/generated/ScannerType.java
Normal file
@@ -0,0 +1,211 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Information about scanning
|
||||
*
|
||||
* <p>Clase Java para ScannerType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScannerType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScannerType", propOrder = {
|
||||
"author",
|
||||
"manufacturer",
|
||||
"model",
|
||||
"serial",
|
||||
"software",
|
||||
"softwareVersion"
|
||||
})
|
||||
public class ScannerType {
|
||||
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "Manufacturer", required = true)
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model", required = true)
|
||||
protected String model;
|
||||
@XmlElement(name = "Serial", required = true)
|
||||
protected String serial;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected String software;
|
||||
@XmlElement(name = "SoftwareVersion", required = true)
|
||||
protected String softwareVersion;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad author.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad author.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad manufacturer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad model.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad model.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setModel(String value) {
|
||||
this.model = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad serial.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerial() {
|
||||
return serial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad serial.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerial(String value) {
|
||||
this.serial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad software.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad software.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(String value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad softwareVersion.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftwareVersion() {
|
||||
return softwareVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad softwareVersion.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftwareVersion(String value) {
|
||||
this.softwareVersion = value;
|
||||
}
|
||||
|
||||
}
|
||||
97
CICMMetadata/java/generated/ScansType.java
Normal file
97
CICMMetadata/java/generated/ScansType.java
Normal file
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para ScansType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScansType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseScan" type="{}CaseScanType" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}MediaScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScansType", propOrder = {
|
||||
"caseScan",
|
||||
"scan"
|
||||
})
|
||||
public class ScansType {
|
||||
|
||||
@XmlElement(name = "CaseScan")
|
||||
protected CaseScanType caseScan;
|
||||
@XmlElement(name = "Scan")
|
||||
protected MediaScanType scan;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad caseScan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CaseScanType }
|
||||
*
|
||||
*/
|
||||
public CaseScanType getCaseScan() {
|
||||
return caseScan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad caseScan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CaseScanType }
|
||||
*
|
||||
*/
|
||||
public void setCaseScan(CaseScanType value) {
|
||||
this.caseScan = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link MediaScanType }
|
||||
*
|
||||
*/
|
||||
public MediaScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link MediaScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(MediaScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
98
CICMMetadata/java/generated/SectorsType.java
Normal file
98
CICMMetadata/java/generated/SectorsType.java
Normal file
@@ -0,0 +1,98 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para SectorsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SectorsType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>unsignedLong">
|
||||
* <attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SectorsType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class SectorsType {
|
||||
|
||||
@XmlValue
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger value;
|
||||
@XmlAttribute(name = "layer")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long layer;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setValue(BigInteger value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad layer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad layer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Long value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
155
CICMMetadata/java/generated/SecureDigitalType.java
Normal file
155
CICMMetadata/java/generated/SecureDigitalType.java
Normal file
@@ -0,0 +1,155 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Contains SecureDigital device information
|
||||
*
|
||||
* <p>Clase Java para SecureDigitalType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SecureDigitalType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CID" type="{}DumpType"/>
|
||||
* <element name="CSD" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="SCR" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="OCR" type="{}DumpType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SecureDigitalType", propOrder = {
|
||||
"cid",
|
||||
"csd",
|
||||
"scr",
|
||||
"ocr"
|
||||
})
|
||||
public class SecureDigitalType {
|
||||
|
||||
@XmlElement(name = "CID", required = true)
|
||||
protected DumpType cid;
|
||||
@XmlElement(name = "CSD")
|
||||
protected DumpType csd;
|
||||
@XmlElement(name = "SCR")
|
||||
protected DumpType scr;
|
||||
@XmlElement(name = "OCR")
|
||||
protected DumpType ocr;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad cid.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getCID() {
|
||||
return cid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad cid.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setCID(DumpType value) {
|
||||
this.cid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad csd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getCSD() {
|
||||
return csd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad csd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setCSD(DumpType value) {
|
||||
this.csd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getSCR() {
|
||||
return scr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setSCR(DumpType value) {
|
||||
this.scr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad ocr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getOCR() {
|
||||
return ocr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad ocr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setOCR(DumpType value) {
|
||||
this.ocr = value;
|
||||
}
|
||||
|
||||
}
|
||||
104
CICMMetadata/java/generated/SecuritySectorsType.java
Normal file
104
CICMMetadata/java/generated/SecuritySectorsType.java
Normal file
@@ -0,0 +1,104 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Start and end of XGD's security sectors
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para SecuritySectorsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SecuritySectorsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SecuritySectorsType", propOrder = {
|
||||
"start",
|
||||
"end"
|
||||
})
|
||||
public class SecuritySectorsType {
|
||||
|
||||
@XmlElement(name = "Start", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger start;
|
||||
@XmlElement(name = "End", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger end;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad start.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStart() {
|
||||
return start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad start.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStart(BigInteger value) {
|
||||
this.start = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad end.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEnd() {
|
||||
return end;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad end.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEnd(BigInteger value) {
|
||||
this.end = value;
|
||||
}
|
||||
|
||||
}
|
||||
190
CICMMetadata/java/generated/SequenceType.java
Normal file
190
CICMMetadata/java/generated/SequenceType.java
Normal file
@@ -0,0 +1,190 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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;
|
||||
|
||||
|
||||
/**
|
||||
* Sequence information about a disc
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para SequenceType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SequenceType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MediaTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="TotalMedia">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Side" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <maxInclusive value="2"/>
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Layer" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <minInclusive value="0"/>
|
||||
* <maxInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SequenceType", propOrder = {
|
||||
"mediaTitle",
|
||||
"mediaSequence",
|
||||
"totalMedia",
|
||||
"side",
|
||||
"layer"
|
||||
})
|
||||
public class SequenceType {
|
||||
|
||||
@XmlElement(name = "MediaTitle")
|
||||
protected String mediaTitle;
|
||||
@XmlElement(name = "MediaSequence")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long mediaSequence;
|
||||
@XmlElement(name = "TotalMedia")
|
||||
protected long totalMedia;
|
||||
@XmlElement(name = "Side")
|
||||
protected Short side;
|
||||
@XmlElement(name = "Layer")
|
||||
protected Short layer;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad mediaTitle.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMediaTitle() {
|
||||
return mediaTitle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad mediaTitle.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMediaTitle(String value) {
|
||||
this.mediaTitle = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad mediaSequence.
|
||||
*
|
||||
*/
|
||||
public long getMediaSequence() {
|
||||
return mediaSequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad mediaSequence.
|
||||
*
|
||||
*/
|
||||
public void setMediaSequence(long value) {
|
||||
this.mediaSequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad totalMedia.
|
||||
*
|
||||
*/
|
||||
public long getTotalMedia() {
|
||||
return totalMedia;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad totalMedia.
|
||||
*
|
||||
*/
|
||||
public void setTotalMedia(long value) {
|
||||
this.totalMedia = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad side.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Short getSide() {
|
||||
return side;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad side.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setSide(Short value) {
|
||||
this.side = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad layer.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Short getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad layer.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Short value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
CICMMetadata/java/generated/SoftwareType.java
Normal file
127
CICMMetadata/java/generated/SoftwareType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Software used for disc reading
|
||||
*
|
||||
* <p>Clase Java para SoftwareType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SoftwareType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="OperatingSystem" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SoftwareType", propOrder = {
|
||||
"name",
|
||||
"version",
|
||||
"operatingSystem"
|
||||
})
|
||||
public class SoftwareType {
|
||||
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version", required = true)
|
||||
protected String version;
|
||||
@XmlElement(name = "OperatingSystem", required = true)
|
||||
protected String operatingSystem;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad name.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad name.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad version.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad version.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersion(String value) {
|
||||
this.version = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad operatingSystem.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOperatingSystem() {
|
||||
return operatingSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad operatingSystem.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOperatingSystem(String value) {
|
||||
this.operatingSystem = value;
|
||||
}
|
||||
|
||||
}
|
||||
130
CICMMetadata/java/generated/SubChannelType.java
Normal file
130
CICMMetadata/java/generated/SubChannelType.java
Normal file
@@ -0,0 +1,130 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Track's subchannel information
|
||||
*
|
||||
* <p>Clase Java para SubChannelType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubChannelType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubChannelType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class SubChannelType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/SubcategoriesType.java
Normal file
76
CICMMetadata/java/generated/SubcategoriesType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para SubcategoriesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubcategoriesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Subcategory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubcategoriesType", propOrder = {
|
||||
"subcategory"
|
||||
})
|
||||
public class SubcategoriesType {
|
||||
|
||||
@XmlElement(name = "Subcategory", required = true)
|
||||
protected List<String> subcategory;
|
||||
|
||||
/**
|
||||
* Gets the value of the subcategory property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the subcategory property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSubcategory().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getSubcategory() {
|
||||
if (subcategory == null) {
|
||||
subcategory = new ArrayList<String>();
|
||||
}
|
||||
return this.subcategory;
|
||||
}
|
||||
|
||||
}
|
||||
122
CICMMetadata/java/generated/SubtitleTracksType.java
Normal file
122
CICMMetadata/java/generated/SubtitleTracksType.java
Normal file
@@ -0,0 +1,122 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para SubtitleTracksType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubtitleTracksType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Languages" type="{}LanguagesType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubtitleTracksType", propOrder = {
|
||||
"languages"
|
||||
})
|
||||
public class SubtitleTracksType {
|
||||
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad languages.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguages() {
|
||||
return languages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad languages.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguages(LanguagesType value) {
|
||||
this.languages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad codec.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCodec() {
|
||||
return codec;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad codec.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCodec(String value) {
|
||||
this.codec = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/SystemsType.java
Normal file
76
CICMMetadata/java/generated/SystemsType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para SystemsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SystemsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="System" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SystemsType", propOrder = {
|
||||
"system"
|
||||
})
|
||||
public class SystemsType {
|
||||
|
||||
@XmlElement(name = "System")
|
||||
protected List<String> system;
|
||||
|
||||
/**
|
||||
* Gets the value of the system property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the system property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSystem().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getSystem() {
|
||||
if (system == null) {
|
||||
system = new ArrayList<String>();
|
||||
}
|
||||
return this.system;
|
||||
}
|
||||
|
||||
}
|
||||
246
CICMMetadata/java/generated/TapeFileType.java
Normal file
246
CICMMetadata/java/generated/TapeFileType.java
Normal file
@@ -0,0 +1,246 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Tape file information
|
||||
*
|
||||
* <p>Clase Java para TapeFileType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TapeFileType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TapeFileType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"sequence",
|
||||
"blockSize",
|
||||
"startBlock",
|
||||
"endBlock",
|
||||
"checksums"
|
||||
})
|
||||
public class TapeFileType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sequence;
|
||||
@XmlElement(name = "BlockSize", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger blockSize;
|
||||
@XmlElement(name = "StartBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startBlock;
|
||||
@XmlElement(name = "EndBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endBlock;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSequence(BigInteger value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad blockSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getBlockSize() {
|
||||
return blockSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad blockSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setBlockSize(BigInteger value) {
|
||||
this.blockSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStartBlock() {
|
||||
return startBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartBlock(BigInteger value) {
|
||||
this.startBlock = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEndBlock() {
|
||||
return endBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndBlock(BigInteger value) {
|
||||
this.endBlock = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/TapeInformationType.java
Normal file
76
CICMMetadata/java/generated/TapeInformationType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para TapeInformationType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TapeInformationType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Partition" type="{}TapePartitionType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TapeInformationType", propOrder = {
|
||||
"partition"
|
||||
})
|
||||
public class TapeInformationType {
|
||||
|
||||
@XmlElement(name = "Partition", required = true)
|
||||
protected List<TapePartitionType> partition;
|
||||
|
||||
/**
|
||||
* Gets the value of the partition property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the partition property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPartition().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link TapePartitionType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<TapePartitionType> getPartition() {
|
||||
if (partition == null) {
|
||||
partition = new ArrayList<TapePartitionType>();
|
||||
}
|
||||
return this.partition;
|
||||
}
|
||||
|
||||
}
|
||||
254
CICMMetadata/java/generated/TapePartitionType.java
Normal file
254
CICMMetadata/java/generated/TapePartitionType.java
Normal file
@@ -0,0 +1,254 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Partition information
|
||||
*
|
||||
* <p>Clase Java para TapePartitionType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TapePartitionType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <sequence>
|
||||
* <element name="File" type="{}TapeFileType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TapePartitionType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"sequence",
|
||||
"startBlock",
|
||||
"endBlock",
|
||||
"checksums",
|
||||
"file"
|
||||
})
|
||||
public class TapePartitionType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sequence;
|
||||
@XmlElement(name = "StartBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startBlock;
|
||||
@XmlElement(name = "EndBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endBlock;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected List<TapeFileType> file;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSequence(BigInteger value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStartBlock() {
|
||||
return startBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartBlock(BigInteger value) {
|
||||
this.startBlock = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEndBlock() {
|
||||
return endBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndBlock(BigInteger value) {
|
||||
this.endBlock = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the file property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the file property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getFile().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link TapeFileType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<TapeFileType> getFile() {
|
||||
if (file == null) {
|
||||
file = new ArrayList<TapeFileType>();
|
||||
}
|
||||
return this.file;
|
||||
}
|
||||
|
||||
}
|
||||
141
CICMMetadata/java/generated/TrackFlagsType.java
Normal file
141
CICMMetadata/java/generated/TrackFlagsType.java
Normal file
@@ -0,0 +1,141 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para TrackFlagsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackFlagsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Quadraphonic">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Data">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="CopyPermitted">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="PreEmphasis">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackFlagsType", propOrder = {
|
||||
"quadraphonic",
|
||||
"data",
|
||||
"copyPermitted",
|
||||
"preEmphasis"
|
||||
})
|
||||
public class TrackFlagsType {
|
||||
|
||||
@XmlElement(name = "Quadraphonic")
|
||||
protected boolean quadraphonic;
|
||||
@XmlElement(name = "Data")
|
||||
protected boolean data;
|
||||
@XmlElement(name = "CopyPermitted")
|
||||
protected boolean copyPermitted;
|
||||
@XmlElement(name = "PreEmphasis")
|
||||
protected boolean preEmphasis;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad quadraphonic.
|
||||
*
|
||||
*/
|
||||
public boolean isQuadraphonic() {
|
||||
return quadraphonic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad quadraphonic.
|
||||
*
|
||||
*/
|
||||
public void setQuadraphonic(boolean value) {
|
||||
this.quadraphonic = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad data.
|
||||
*
|
||||
*/
|
||||
public boolean isData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad data.
|
||||
*
|
||||
*/
|
||||
public void setData(boolean value) {
|
||||
this.data = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad copyPermitted.
|
||||
*
|
||||
*/
|
||||
public boolean isCopyPermitted() {
|
||||
return copyPermitted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad copyPermitted.
|
||||
*
|
||||
*/
|
||||
public void setCopyPermitted(boolean value) {
|
||||
this.copyPermitted = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad preEmphasis.
|
||||
*
|
||||
*/
|
||||
public boolean isPreEmphasis() {
|
||||
return preEmphasis;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad preEmphasis.
|
||||
*
|
||||
*/
|
||||
public void setPreEmphasis(boolean value) {
|
||||
this.preEmphasis = value;
|
||||
}
|
||||
|
||||
}
|
||||
80
CICMMetadata/java/generated/TrackIndexType.java
Normal file
80
CICMMetadata/java/generated/TrackIndexType.java
Normal file
@@ -0,0 +1,80 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para TrackIndexType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackIndexType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>int">
|
||||
* <attribute name="index" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackIndexType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class TrackIndexType {
|
||||
|
||||
@XmlValue
|
||||
protected int value;
|
||||
@XmlAttribute(name = "index", required = true)
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int index;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
*/
|
||||
public int getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
*/
|
||||
public void setValue(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad index.
|
||||
*
|
||||
*/
|
||||
public int getIndex() {
|
||||
return index;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad index.
|
||||
*
|
||||
*/
|
||||
public void setIndex(int value) {
|
||||
this.index = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/TrackIndexesType.java
Normal file
76
CICMMetadata/java/generated/TrackIndexesType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para TrackIndexesType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackIndexesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Index" type="{}TrackIndexType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackIndexesType", propOrder = {
|
||||
"index"
|
||||
})
|
||||
public class TrackIndexesType {
|
||||
|
||||
@XmlElement(name = "Index", required = true)
|
||||
protected List<TrackIndexType> index;
|
||||
|
||||
/**
|
||||
* Gets the value of the index property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the index property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getIndex().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link TrackIndexType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<TrackIndexType> getIndex() {
|
||||
if (index == null) {
|
||||
index = new ArrayList<TrackIndexType>();
|
||||
}
|
||||
return this.index;
|
||||
}
|
||||
|
||||
}
|
||||
92
CICMMetadata/java/generated/TrackSequenceType.java
Normal file
92
CICMMetadata/java/generated/TrackSequenceType.java
Normal file
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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;
|
||||
|
||||
|
||||
/**
|
||||
* Sequence information about a track
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para TrackSequenceType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackSequenceType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Session">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackSequenceType", propOrder = {
|
||||
"trackNumber",
|
||||
"session"
|
||||
})
|
||||
public class TrackSequenceType {
|
||||
|
||||
@XmlElement(name = "TrackNumber")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long trackNumber;
|
||||
@XmlElement(name = "Session")
|
||||
protected long session;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad session.
|
||||
*
|
||||
*/
|
||||
public long getSession() {
|
||||
return session;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad session.
|
||||
*
|
||||
*/
|
||||
public void setSession(long value) {
|
||||
this.session = value;
|
||||
}
|
||||
|
||||
}
|
||||
504
CICMMetadata/java/generated/TrackType.java
Normal file
504
CICMMetadata/java/generated/TrackType.java
Normal file
@@ -0,0 +1,504 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Track information
|
||||
*
|
||||
* <p>Clase Java para TrackType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{}TrackSequenceType"/>
|
||||
* <element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Indexes" type="{}TrackIndexesType" minOccurs="0"/>
|
||||
* <element name="Flags" type="{}TrackFlagsType" minOccurs="0"/>
|
||||
* <element name="ISRC" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="TrackType">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="audio"/>
|
||||
* <enumeration value="mode0"/>
|
||||
* <enumeration value="mode1"/>
|
||||
* <enumeration value="mode2"/>
|
||||
* <enumeration value="m2f1"/>
|
||||
* <enumeration value="m2f2"/>
|
||||
* <enumeration value="dvd"/>
|
||||
* <enumeration value="hddvd"/>
|
||||
* <enumeration value="bluray"/>
|
||||
* <enumeration value="ddcd"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="SubChannel" type="{}SubChannelType" minOccurs="0"/>
|
||||
* <element name="FileSystemInformation" type="{}FileSystemInformationType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"sequence",
|
||||
"startMSF",
|
||||
"endMSF",
|
||||
"startSector",
|
||||
"endSector",
|
||||
"indexes",
|
||||
"flags",
|
||||
"isrc",
|
||||
"trackType",
|
||||
"bytesPerSector",
|
||||
"accoustID",
|
||||
"checksums",
|
||||
"subChannel",
|
||||
"fileSystemInformation"
|
||||
})
|
||||
public class TrackType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
protected TrackSequenceType sequence;
|
||||
@XmlElement(name = "StartMSF")
|
||||
protected String startMSF;
|
||||
@XmlElement(name = "EndMSF")
|
||||
protected String endMSF;
|
||||
@XmlElement(name = "StartSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startSector;
|
||||
@XmlElement(name = "EndSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endSector;
|
||||
@XmlElement(name = "Indexes")
|
||||
protected TrackIndexesType indexes;
|
||||
@XmlElement(name = "Flags")
|
||||
protected TrackFlagsType flags;
|
||||
@XmlElement(name = "ISRC")
|
||||
protected String isrc;
|
||||
@XmlElement(name = "TrackType", required = true)
|
||||
protected String trackType;
|
||||
@XmlElement(name = "BytesPerSector")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long bytesPerSector;
|
||||
@XmlElement(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "SubChannel")
|
||||
protected SubChannelType subChannel;
|
||||
@XmlElement(name = "FileSystemInformation")
|
||||
protected FileSystemInformationType fileSystemInformation;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad image.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public void setImage(ImageType value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TrackSequenceType }
|
||||
*
|
||||
*/
|
||||
public TrackSequenceType getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TrackSequenceType }
|
||||
*
|
||||
*/
|
||||
public void setSequence(TrackSequenceType value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startMSF.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStartMSF() {
|
||||
return startMSF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startMSF.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStartMSF(String value) {
|
||||
this.startMSF = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endMSF.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEndMSF() {
|
||||
return endMSF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endMSF.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEndMSF(String value) {
|
||||
this.endMSF = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartSector(BigInteger value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndSector(BigInteger value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad indexes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TrackIndexesType }
|
||||
*
|
||||
*/
|
||||
public TrackIndexesType getIndexes() {
|
||||
return indexes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad indexes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TrackIndexesType }
|
||||
*
|
||||
*/
|
||||
public void setIndexes(TrackIndexesType value) {
|
||||
this.indexes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad flags.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TrackFlagsType }
|
||||
*
|
||||
*/
|
||||
public TrackFlagsType getFlags() {
|
||||
return flags;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad flags.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TrackFlagsType }
|
||||
*
|
||||
*/
|
||||
public void setFlags(TrackFlagsType value) {
|
||||
this.flags = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad isrc.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getISRC() {
|
||||
return isrc;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad isrc.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setISRC(String value) {
|
||||
this.isrc = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad trackType.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTrackType() {
|
||||
return trackType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad trackType.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTrackType(String value) {
|
||||
this.trackType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public long getBytesPerSector() {
|
||||
return bytesPerSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public void setBytesPerSector(long value) {
|
||||
this.bytesPerSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad accoustID.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccoustID() {
|
||||
return accoustID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad accoustID.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccoustID(String value) {
|
||||
this.accoustID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad checksums.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType getChecksums() {
|
||||
return checksums;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad checksums.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public void setChecksums(ChecksumsType value) {
|
||||
this.checksums = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad subChannel.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SubChannelType }
|
||||
*
|
||||
*/
|
||||
public SubChannelType getSubChannel() {
|
||||
return subChannel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad subChannel.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SubChannelType }
|
||||
*
|
||||
*/
|
||||
public void setSubChannel(SubChannelType value) {
|
||||
this.subChannel = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad fileSystemInformation.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileSystemInformationType }
|
||||
*
|
||||
*/
|
||||
public FileSystemInformationType getFileSystemInformation() {
|
||||
return fileSystemInformation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad fileSystemInformation.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileSystemInformationType }
|
||||
*
|
||||
*/
|
||||
public void setFileSystemInformation(FileSystemInformationType value) {
|
||||
this.fileSystemInformation = value;
|
||||
}
|
||||
|
||||
}
|
||||
125
CICMMetadata/java/generated/USBType.java
Normal file
125
CICMMetadata/java/generated/USBType.java
Normal file
@@ -0,0 +1,125 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Contains USB device information
|
||||
*
|
||||
* <p>Clase Java para USBType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="USBType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="VendorID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="ProductID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Descriptors" type="{}DumpType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "USBType", propOrder = {
|
||||
"vendorID",
|
||||
"productID",
|
||||
"descriptors"
|
||||
})
|
||||
public class USBType {
|
||||
|
||||
@XmlElement(name = "VendorID")
|
||||
protected int vendorID;
|
||||
@XmlElement(name = "ProductID")
|
||||
protected int productID;
|
||||
@XmlElement(name = "Descriptors")
|
||||
protected DumpType descriptors;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad vendorID.
|
||||
*
|
||||
*/
|
||||
public int getVendorID() {
|
||||
return vendorID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad vendorID.
|
||||
*
|
||||
*/
|
||||
public void setVendorID(int value) {
|
||||
this.vendorID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad productID.
|
||||
*
|
||||
*/
|
||||
public int getProductID() {
|
||||
return productID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad productID.
|
||||
*
|
||||
*/
|
||||
public void setProductID(int value) {
|
||||
this.productID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad descriptors.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getDescriptors() {
|
||||
return descriptors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad descriptors.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setDescriptors(DumpType value) {
|
||||
this.descriptors = value;
|
||||
}
|
||||
|
||||
}
|
||||
150
CICMMetadata/java/generated/UserManualType.java
Normal file
150
CICMMetadata/java/generated/UserManualType.java
Normal file
@@ -0,0 +1,150 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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;
|
||||
|
||||
|
||||
/**
|
||||
* User manual or user guide accompanying this set. Can be more than one.
|
||||
*
|
||||
*
|
||||
* <p>Clase Java para UserManualType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="UserManualType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "UserManualType", propOrder = {
|
||||
"language",
|
||||
"pages",
|
||||
"pageSize",
|
||||
"scan"
|
||||
})
|
||||
public class UserManualType {
|
||||
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan")
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad language.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad language.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pages.
|
||||
*
|
||||
*/
|
||||
public long getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pages.
|
||||
*
|
||||
*/
|
||||
public void setPages(long value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pageSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pageSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPageSize(String value) {
|
||||
this.pageSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad scan.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad scan.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
CICMMetadata/java/generated/VariableBlockSizeType.java
Normal file
76
CICMMetadata/java/generated/VariableBlockSizeType.java
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para VariableBlockSizeType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VariableBlockSizeType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BlockSize" type="{}BlockSizeType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VariableBlockSizeType", propOrder = {
|
||||
"blockSize"
|
||||
})
|
||||
public class VariableBlockSizeType {
|
||||
|
||||
@XmlElement(name = "BlockSize", required = true)
|
||||
protected List<BlockSizeType> blockSize;
|
||||
|
||||
/**
|
||||
* Gets the value of the blockSize property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the blockSize property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBlockSize().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BlockSizeType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BlockSizeType> getBlockSize() {
|
||||
if (blockSize == null) {
|
||||
blockSize = new ArrayList<BlockSizeType>();
|
||||
}
|
||||
return this.blockSize;
|
||||
}
|
||||
|
||||
}
|
||||
201
CICMMetadata/java/generated/VideoTracksType.java
Normal file
201
CICMMetadata/java/generated/VideoTracksType.java
Normal file
@@ -0,0 +1,201 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para VideoTracksType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VideoTracksType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Languages" type="{}LanguagesType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Horizontal" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="Vertical" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* <attribute name="ThreeD" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VideoTracksType", propOrder = {
|
||||
"languages"
|
||||
})
|
||||
public class VideoTracksType {
|
||||
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
@XmlAttribute(name = "Horizontal", required = true)
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long horizontal;
|
||||
@XmlAttribute(name = "Vertical", required = true)
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long vertical;
|
||||
@XmlAttribute(name = "MeanBitrate", required = true)
|
||||
protected long meanBitrate;
|
||||
@XmlAttribute(name = "ThreeD", required = true)
|
||||
protected boolean threeD;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad languages.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguages() {
|
||||
return languages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad languages.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguages(LanguagesType value) {
|
||||
this.languages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad codec.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCodec() {
|
||||
return codec;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad codec.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCodec(String value) {
|
||||
this.codec = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad horizontal.
|
||||
*
|
||||
*/
|
||||
public long getHorizontal() {
|
||||
return horizontal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad horizontal.
|
||||
*
|
||||
*/
|
||||
public void setHorizontal(long value) {
|
||||
this.horizontal = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad vertical.
|
||||
*
|
||||
*/
|
||||
public long getVertical() {
|
||||
return vertical;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad vertical.
|
||||
*
|
||||
*/
|
||||
public void setVertical(long value) {
|
||||
this.vertical = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad meanBitrate.
|
||||
*
|
||||
*/
|
||||
public long getMeanBitrate() {
|
||||
return meanBitrate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad meanBitrate.
|
||||
*
|
||||
*/
|
||||
public void setMeanBitrate(long value) {
|
||||
this.meanBitrate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad threeD.
|
||||
*
|
||||
*/
|
||||
public boolean isThreeD() {
|
||||
return threeD;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad threeD.
|
||||
*
|
||||
*/
|
||||
public void setThreeD(boolean value) {
|
||||
this.threeD = value;
|
||||
}
|
||||
|
||||
}
|
||||
112
CICMMetadata/java/generated/XboxSecuritySectorsType.java
Normal file
112
CICMMetadata/java/generated/XboxSecuritySectorsType.java
Normal file
@@ -0,0 +1,112 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM 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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para XboxSecuritySectorsType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="XboxSecuritySectorsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RequestVersion" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="RequestNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="SecuritySectors" type="{}DumpType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "XboxSecuritySectorsType", propOrder = {
|
||||
"requestVersion",
|
||||
"requestNumber",
|
||||
"securitySectors"
|
||||
})
|
||||
public class XboxSecuritySectorsType {
|
||||
|
||||
@XmlElement(name = "RequestVersion")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long requestVersion;
|
||||
@XmlElement(name = "RequestNumber")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long requestNumber;
|
||||
@XmlElement(name = "SecuritySectors", required = true)
|
||||
protected DumpType securitySectors;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad requestVersion.
|
||||
*
|
||||
*/
|
||||
public long getRequestVersion() {
|
||||
return requestVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad requestVersion.
|
||||
*
|
||||
*/
|
||||
public void setRequestVersion(long value) {
|
||||
this.requestVersion = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad requestNumber.
|
||||
*
|
||||
*/
|
||||
public long getRequestNumber() {
|
||||
return requestNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad requestNumber.
|
||||
*
|
||||
*/
|
||||
public void setRequestNumber(long value) {
|
||||
this.requestNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad securitySectors.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getSecuritySectors() {
|
||||
return securitySectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad securitySectors.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setSecuritySectors(DumpType value) {
|
||||
this.securitySectors = value;
|
||||
}
|
||||
|
||||
}
|
||||
132
CICMMetadata/java/generated/XboxType.java
Normal file
132
CICMMetadata/java/generated/XboxType.java
Normal file
@@ -0,0 +1,132 @@
|
||||
//
|
||||
// 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.
|
||||
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Clase Java para XboxType complex type.
|
||||
*
|
||||
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="XboxType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PFI" type="{}DumpType"/>
|
||||
* <element name="DMI" type="{}DumpType"/>
|
||||
* <element name="SecuritySectors" type="{}XboxSecuritySectorsType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "XboxType", propOrder = {
|
||||
"pfi",
|
||||
"dmi",
|
||||
"securitySectors"
|
||||
})
|
||||
public class XboxType {
|
||||
|
||||
@XmlElement(name = "PFI", required = true)
|
||||
protected DumpType pfi;
|
||||
@XmlElement(name = "DMI", required = true)
|
||||
protected DumpType dmi;
|
||||
@XmlElement(name = "SecuritySectors", required = true)
|
||||
protected List<XboxSecuritySectorsType> securitySectors;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad pfi.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getPFI() {
|
||||
return pfi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad pfi.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setPFI(DumpType value) {
|
||||
this.pfi = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad dmi.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getDMI() {
|
||||
return dmi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad dmi.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setDMI(DumpType value) {
|
||||
this.dmi = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the securitySectors property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the securitySectors property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSecuritySectors().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link XboxSecuritySectorsType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<XboxSecuritySectorsType> getSecuritySectors() {
|
||||
if (securitySectors == null) {
|
||||
securitySectors = new ArrayList<XboxSecuritySectorsType>();
|
||||
}
|
||||
return this.securitySectors;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user