Moved submodules to directories.

This commit is contained in:
2025-08-14 02:28:53 +01:00
parent d2bbfe3688
commit 3236bea76b
385 changed files with 135357 additions and 40 deletions

View 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>
* &lt;complexType name="ATAType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Identify" type="{}DumpType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="AdvertisementType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="File" type="{}FileType"/>
* &lt;element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Frames" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
* &lt;element name="Duration" type="{http://www.w3.org/2001/XMLSchema}double"/>
* &lt;element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="AudioTrack" type="{}AudioTracksType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="VideoTrack" type="{}VideoTracksType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="SubtitleTrack" type="{}SubtitleTracksType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Recording" type="{}RecordingType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ArchitecturesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Architecture" maxOccurs="unbounded">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="4004"/>
* &lt;enumeration value="4040"/>
* &lt;enumeration value="6502"/>
* &lt;enumeration value="65816"/>
* &lt;enumeration value="8008"/>
* &lt;enumeration value="8051"/>
* &lt;enumeration value="8080"/>
* &lt;enumeration value="8085"/>
* &lt;enumeration value="aarch64"/>
* &lt;enumeration value="am29000"/>
* &lt;enumeration value="amd64"/>
* &lt;enumeration value="apx432"/>
* &lt;enumeration value="arm"/>
* &lt;enumeration value="avr"/>
* &lt;enumeration value="avr32"/>
* &lt;enumeration value="axp"/>
* &lt;enumeration value="clipper"/>
* &lt;enumeration value="cray"/>
* &lt;enumeration value="esa390"/>
* &lt;enumeration value="hobbit"/>
* &lt;enumeration value="i86"/>
* &lt;enumeration value="i860"/>
* &lt;enumeration value="i960"/>
* &lt;enumeration value="ia32"/>
* &lt;enumeration value="ia64"/>
* &lt;enumeration value="m56k"/>
* &lt;enumeration value="m6800"/>
* &lt;enumeration value="m6801"/>
* &lt;enumeration value="m6805"/>
* &lt;enumeration value="m6809"/>
* &lt;enumeration value="m68k"/>
* &lt;enumeration value="m88k"/>
* &lt;enumeration value="mcs41"/>
* &lt;enumeration value="mcs48"/>
* &lt;enumeration value="mips32"/>
* &lt;enumeration value="mips64"/>
* &lt;enumeration value="msp430"/>
* &lt;enumeration value="nios2"/>
* &lt;enumeration value="openrisc"/>
* &lt;enumeration value="parisc"/>
* &lt;enumeration value="pdp1"/>
* &lt;enumeration value="pdp10"/>
* &lt;enumeration value="pdp11"/>
* &lt;enumeration value="pdp7"/>
* &lt;enumeration value="pdp8"/>
* &lt;enumeration value="pic"/>
* &lt;enumeration value="power"/>
* &lt;enumeration value="ppc"/>
* &lt;enumeration value="ppc64"/>
* &lt;enumeration value="prism"/>
* &lt;enumeration value="renesasrx"/>
* &lt;enumeration value="riscv"/>
* &lt;enumeration value="s360"/>
* &lt;enumeration value="s370"/>
* &lt;enumeration value="sh"/>
* &lt;enumeration value="sh1"/>
* &lt;enumeration value="sh2"/>
* &lt;enumeration value="sh3"/>
* &lt;enumeration value="sh4"/>
* &lt;enumeration value="sh5"/>
* &lt;enumeration value="sh64"/>
* &lt;enumeration value="sparc"/>
* &lt;enumeration value="sparc64"/>
* &lt;enumeration value="transputer"/>
* &lt;enumeration value="vax"/>
* &lt;enumeration value="we32000"/>
* &lt;enumeration value="x32"/>
* &lt;enumeration value="z80"/>
* &lt;enumeration value="z800"/>
* &lt;enumeration value="z8000"/>
* &lt;enumeration value="z80000"/>
* &lt;enumeration value="zarch"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="AudioBlockType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="AudioMediaType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="Sequence" type="{}SequenceType"/>
* &lt;element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Block" type="{}AudioBlockType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Dimensions" type="{}DimensionsType"/>
* &lt;element name="Scans" type="{}ScansType" minOccurs="0"/>
* &lt;element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="AudioTracksType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Languages" type="{}LanguagesType" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="TrackNumber" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;attribute name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
* &lt;attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="BarcodeType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="type" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="aztec"/>
* &lt;enumeration value="codabar"/>
* &lt;enumeration value="code11"/>
* &lt;enumeration value="code128"/>
* &lt;enumeration value="code39"/>
* &lt;enumeration value="code93"/>
* &lt;enumeration value="cpcbinary"/>
* &lt;enumeration value="ezcode"/>
* &lt;enumeration value="fim"/>
* &lt;enumeration value="itf"/>
* &lt;enumeration value="itf14"/>
* &lt;enumeration value="ean13"/>
* &lt;enumeration value="ean8"/>
* &lt;enumeration value="maxicode"/>
* &lt;enumeration value="isbn"/>
* &lt;enumeration value="isrc"/>
* &lt;enumeration value="msi"/>
* &lt;enumeration value="tof"/>
* &lt;enumeration value="shotcode"/>
* &lt;enumeration value="rm4scc"/>
* &lt;enumeration value="qr"/>
* &lt;enumeration value="ean5"/>
* &lt;enumeration value="ean2"/>
* &lt;enumeration value="qr"/>
* &lt;enumeration value="postnet"/>
* &lt;enumeration value="postbar"/>
* &lt;enumeration value="plessey"/>
* &lt;enumeration value="pharmacode"/>
* &lt;enumeration value="pdf417"/>
* &lt;enumeration value="patchcode"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="BarcodesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Barcode" type="{}BarcodeType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

File diff suppressed because it is too large Load Diff

View 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>
* &lt;complexType name="BlockSizeType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>unsignedInt">
* &lt;attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="BlockTrackType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Head" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
* &lt;element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="BookType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Barcodes" type="{}BarcodesType"/>
* &lt;element name="Cover" type="{}CoverType" minOccurs="0"/>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/>
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Scan" type="{}ScanType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BookType", propOrder = {
"barcodes",
"cover",
"name",
"editorial",
"author",
"publicationDate",
"language",
"pages",
"pageSize",
"scan"
})
public class BookType {
@XmlElement(name = "Barcodes", required = true)
protected BarcodesType barcodes;
@XmlElement(name = "Cover")
protected CoverType cover;
@XmlElement(name = "Name", required = true)
protected String name;
@XmlElement(name = "Editorial")
protected String editorial;
@XmlElement(name = "Author", required = true)
protected String author;
@XmlElement(name = "PublicationDate")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar publicationDate;
@XmlElement(name = "Language")
protected LanguagesType language;
@XmlElement(name = "Pages")
@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;
}
}

View 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>
* &lt;complexType name="BorderType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;attribute name="session">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="CICMMetadataType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Developer" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Publisher" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Performer" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ReleaseType" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="Retail"/>
* &lt;enumeration value="Bundle"/>
* &lt;enumeration value="Coverdisc"/>
* &lt;enumeration value="Subscription"/>
* &lt;enumeration value="Demo"/>
* &lt;enumeration value="OEM"/>
* &lt;enumeration value="Shareware"/>
* &lt;enumeration value="FOSS"/>
* &lt;enumeration value="Adware"/>
* &lt;enumeration value="Donationware"/>
* &lt;enumeration value="Digital download"/>
* &lt;enumeration value="SaaS"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="ReleaseDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* &lt;element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
* &lt;element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Keywords" type="{}KeywordsType" minOccurs="0"/>
* &lt;element name="Magazine" type="{}MagazineType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Book" type="{}BookType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Categories" type="{}CategoriesType" minOccurs="0"/>
* &lt;element name="Subcategories" type="{}SubcategoriesType" minOccurs="0"/>
* &lt;element name="Languages" type="{}LanguagesType" minOccurs="0"/>
* &lt;element name="Systems" type="{}SystemsType" minOccurs="0"/>
* &lt;element name="Architectures" type="{}ArchitecturesType" minOccurs="0"/>
* &lt;element name="RequiredOperatingSystems" type="{}RequiredOperatingSystemsType" minOccurs="0"/>
* &lt;element name="UserManual" type="{}UserManualType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="OpticalDisc" type="{}OpticalDiscType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Advertisement" type="{}AdvertisementType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="LinearMedia" type="{}LinearMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="PCICard" type="{}PCIType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="BlockMedia" type="{}BlockMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="AudioMedia" type="{}AudioMediaType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="CaseScanType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CaseScanElement">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="sleeve"/>
* &lt;enumeration value="inner"/>
* &lt;enumeration value="inlay"/>
* &lt;enumeration value="frontback"/>
* &lt;enumeration value="frontfull"/>
* &lt;enumeration value="boxfront"/>
* &lt;enumeration value="boxback"/>
* &lt;enumeration value="boxspine"/>
* &lt;enumeration value="external"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Scan" type="{}ScanType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="CaseType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CaseType">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="jewel"/>
* &lt;enumeration value="bigjewel"/>
* &lt;enumeration value="slimjewel"/>
* &lt;enumeration value="sleeve"/>
* &lt;enumeration value="qpack"/>
* &lt;enumeration value="digisleeve"/>
* &lt;enumeration value="discboxslider"/>
* &lt;enumeration value="compacplus"/>
* &lt;enumeration value="keepcase"/>
* &lt;enumeration value="snapcase"/>
* &lt;enumeration value="softcase"/>
* &lt;enumeration value="ecopack"/>
* &lt;enumeration value="liftlock"/>
* &lt;enumeration value="spindle"/>
* &lt;enumeration value="ps2case"/>
* &lt;enumeration value="ps3case"/>
* &lt;enumeration value="bluraykeepcase"/>
* &lt;enumeration value="pscase"/>
* &lt;enumeration value="dccase"/>
* &lt;enumeration value="saturncase"/>
* &lt;enumeration value="xboxcase"/>
* &lt;enumeration value="xbox360case"/>
* &lt;enumeration value="xboxonecase"/>
* &lt;enumeration value="saturnbigcase"/>
* &lt;enumeration value="gccase"/>
* &lt;enumeration value="wiicase"/>
* &lt;enumeration value="unknown"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Scans" type="{}ScansType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="CategoriesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Category" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ChecksumType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="type" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="fletcher16"/>
* &lt;enumeration value="fletcher32"/>
* &lt;enumeration value="adler32"/>
* &lt;enumeration value="crc16"/>
* &lt;enumeration value="crc16ccitt"/>
* &lt;enumeration value="crc32"/>
* &lt;enumeration value="crc64"/>
* &lt;enumeration value="md4"/>
* &lt;enumeration value="md5"/>
* &lt;enumeration value="dm6"/>
* &lt;enumeration value="ripemd128"/>
* &lt;enumeration value="ripemd160"/>
* &lt;enumeration value="ripemed320"/>
* &lt;enumeration value="sha1"/>
* &lt;enumeration value="sha224"/>
* &lt;enumeration value="sha256"/>
* &lt;enumeration value="sha384"/>
* &lt;enumeration value="sha512"/>
* &lt;enumeration value="sha3"/>
* &lt;enumeration value="skein"/>
* &lt;enumeration value="snefru"/>
* &lt;enumeration value="blake256"/>
* &lt;enumeration value="blake512"/>
* &lt;enumeration value="tiger"/>
* &lt;enumeration value="whirlpool"/>
* &lt;enumeration value="spamsum"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ChecksumsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Checksum" type="{}ChecksumType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ContentsFileType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="ExtendedAttributes" type="{}ExtendedAttributesType"/>
* &lt;/sequence>
* &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="creationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="accessTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="statusChangeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="backupTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="lastWriteTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="attributes" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="posixMode" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;attribute name="deviceNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="posixGroupId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="inode" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="links" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="posixUserId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="CoordinatesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Latitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
* &lt;element name="Longitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="CoverType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="File" type="{}FileType"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="Thumbnail" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="DimensionsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Diameter" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* &lt;element name="Height" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* &lt;element name="Width" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* &lt;element name="Thickness" type="{http://www.w3.org/2001/XMLSchema}double"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="DirectoryType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="File" type="{}ContentsFileType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Directory" type="{}DirectoryType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="creationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="accessTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="statusChangeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="backupTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="lastWriteTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* &lt;attribute name="attributes" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="posixMode" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;attribute name="deviceNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="posixGroupId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="inode" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="links" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;attribute name="posixUserId" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="DiscScanType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="DiscScanElement">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="up"/>
* &lt;enumeration value="down"/>
* &lt;enumeration value="front"/>
* &lt;enumeration value="back"/>
* &lt;enumeration value="left"/>
* &lt;enumeration value="right"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Scan" type="{}ScanType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="DumpHardwareArrayType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="DumpHardware" type="{}DumpHardwareType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="DumpHardwareType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Revision" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Firmware" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Extents" type="{}ExtentsType"/>
* &lt;element name="Software" type="{}SoftwareType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="DumpType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="EVPDType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;attribute name="page">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
* &lt;minInclusive value="1"/>
* &lt;maxInclusive value="255"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ExtendedAttributeType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ExtendedAttributesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="ExtendedAttribute" type="{}ExtendedAttributeType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ExtentType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ExtentsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Extent" type="{}ExtentType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="FileSystemInformationType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Partition" type="{}PartitionType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="FileSystemType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="ModificationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="BackupDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Files" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
* &lt;element name="Bootable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* &lt;element name="VolumeSerial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="VolumeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
* &lt;element name="Dirty" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* &lt;element name="ExpirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="EffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="SystemIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="VolumeSetIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="PublisherIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="DataPreparerIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ApplicationIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Contents" type="{}FilesystemContentsType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="FileSystemsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="FileSystem" type="{}FileSystemType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="FileType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="FilesystemContentsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="File" type="{}ContentsFileType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Directory" type="{}DirectoryType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ImageType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="KeywordsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="LanguagesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Language" maxOccurs="unbounded">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="aar"/>
* &lt;enumeration value="abk"/>
* &lt;enumeration value="ace"/>
* &lt;enumeration value="ach"/>
* &lt;enumeration value="ada"/>
* &lt;enumeration value="ady"/>
* &lt;enumeration value="afa"/>
* &lt;enumeration value="afh"/>
* &lt;enumeration value="afr"/>
* &lt;enumeration value="ain"/>
* &lt;enumeration value="aka"/>
* &lt;enumeration value="akk"/>
* &lt;enumeration value="alb"/>
* &lt;enumeration value="ale"/>
* &lt;enumeration value="alg"/>
* &lt;enumeration value="alt"/>
* &lt;enumeration value="amh"/>
* &lt;enumeration value="ang"/>
* &lt;enumeration value="anp"/>
* &lt;enumeration value="apa"/>
* &lt;enumeration value="ara"/>
* &lt;enumeration value="arc"/>
* &lt;enumeration value="arg"/>
* &lt;enumeration value="arm"/>
* &lt;enumeration value="arn"/>
* &lt;enumeration value="arp"/>
* &lt;enumeration value="art"/>
* &lt;enumeration value="arw"/>
* &lt;enumeration value="asm"/>
* &lt;enumeration value="ast"/>
* &lt;enumeration value="ath"/>
* &lt;enumeration value="aus"/>
* &lt;enumeration value="ava"/>
* &lt;enumeration value="ave"/>
* &lt;enumeration value="awa"/>
* &lt;enumeration value="aym"/>
* &lt;enumeration value="aze"/>
* &lt;enumeration value="bad"/>
* &lt;enumeration value="bai"/>
* &lt;enumeration value="bak"/>
* &lt;enumeration value="bal"/>
* &lt;enumeration value="bam"/>
* &lt;enumeration value="ban"/>
* &lt;enumeration value="baq"/>
* &lt;enumeration value="bas"/>
* &lt;enumeration value="bat"/>
* &lt;enumeration value="bej"/>
* &lt;enumeration value="bel"/>
* &lt;enumeration value="bem"/>
* &lt;enumeration value="ben"/>
* &lt;enumeration value="ber"/>
* &lt;enumeration value="bho"/>
* &lt;enumeration value="bih"/>
* &lt;enumeration value="bik"/>
* &lt;enumeration value="bin"/>
* &lt;enumeration value="bis"/>
* &lt;enumeration value="bla"/>
* &lt;enumeration value="bnt"/>
* &lt;enumeration value="bos"/>
* &lt;enumeration value="bra"/>
* &lt;enumeration value="bre"/>
* &lt;enumeration value="btk"/>
* &lt;enumeration value="bua"/>
* &lt;enumeration value="bug"/>
* &lt;enumeration value="bul"/>
* &lt;enumeration value="bur"/>
* &lt;enumeration value="byn"/>
* &lt;enumeration value="cad"/>
* &lt;enumeration value="cai"/>
* &lt;enumeration value="car"/>
* &lt;enumeration value="cat"/>
* &lt;enumeration value="cau"/>
* &lt;enumeration value="ceb"/>
* &lt;enumeration value="cel"/>
* &lt;enumeration value="cha"/>
* &lt;enumeration value="chb"/>
* &lt;enumeration value="che"/>
* &lt;enumeration value="chg"/>
* &lt;enumeration value="chi"/>
* &lt;enumeration value="chk"/>
* &lt;enumeration value="chm"/>
* &lt;enumeration value="chn"/>
* &lt;enumeration value="cho"/>
* &lt;enumeration value="chp"/>
* &lt;enumeration value="chr"/>
* &lt;enumeration value="chu"/>
* &lt;enumeration value="chv"/>
* &lt;enumeration value="chy"/>
* &lt;enumeration value="cmc"/>
* &lt;enumeration value="cop"/>
* &lt;enumeration value="cor"/>
* &lt;enumeration value="cos"/>
* &lt;enumeration value="cpe"/>
* &lt;enumeration value="cpf"/>
* &lt;enumeration value="cpp"/>
* &lt;enumeration value="cre"/>
* &lt;enumeration value="crh"/>
* &lt;enumeration value="crp"/>
* &lt;enumeration value="csb"/>
* &lt;enumeration value="cus"/>
* &lt;enumeration value="cze"/>
* &lt;enumeration value="dak"/>
* &lt;enumeration value="dan"/>
* &lt;enumeration value="dar"/>
* &lt;enumeration value="day"/>
* &lt;enumeration value="del"/>
* &lt;enumeration value="den"/>
* &lt;enumeration value="dgr"/>
* &lt;enumeration value="din"/>
* &lt;enumeration value="div"/>
* &lt;enumeration value="doi"/>
* &lt;enumeration value="dra"/>
* &lt;enumeration value="dsb"/>
* &lt;enumeration value="dua"/>
* &lt;enumeration value="dum"/>
* &lt;enumeration value="dut"/>
* &lt;enumeration value="dyu"/>
* &lt;enumeration value="dzo"/>
* &lt;enumeration value="efi"/>
* &lt;enumeration value="egy"/>
* &lt;enumeration value="eka"/>
* &lt;enumeration value="elx"/>
* &lt;enumeration value="eng"/>
* &lt;enumeration value="enm"/>
* &lt;enumeration value="epo"/>
* &lt;enumeration value="est"/>
* &lt;enumeration value="ewe"/>
* &lt;enumeration value="ewo"/>
* &lt;enumeration value="fan"/>
* &lt;enumeration value="fao"/>
* &lt;enumeration value="fat"/>
* &lt;enumeration value="fij"/>
* &lt;enumeration value="fil"/>
* &lt;enumeration value="fin"/>
* &lt;enumeration value="fiu"/>
* &lt;enumeration value="fon"/>
* &lt;enumeration value="fre"/>
* &lt;enumeration value="frm"/>
* &lt;enumeration value="fro"/>
* &lt;enumeration value="frr"/>
* &lt;enumeration value="frs"/>
* &lt;enumeration value="fry"/>
* &lt;enumeration value="ful"/>
* &lt;enumeration value="fur"/>
* &lt;enumeration value="gaa"/>
* &lt;enumeration value="gay"/>
* &lt;enumeration value="gba"/>
* &lt;enumeration value="gem"/>
* &lt;enumeration value="geo"/>
* &lt;enumeration value="ger"/>
* &lt;enumeration value="gez"/>
* &lt;enumeration value="gil"/>
* &lt;enumeration value="gla"/>
* &lt;enumeration value="gle"/>
* &lt;enumeration value="glg"/>
* &lt;enumeration value="glv"/>
* &lt;enumeration value="gmh"/>
* &lt;enumeration value="goh"/>
* &lt;enumeration value="gon"/>
* &lt;enumeration value="gor"/>
* &lt;enumeration value="got"/>
* &lt;enumeration value="grb"/>
* &lt;enumeration value="grc"/>
* &lt;enumeration value="gre"/>
* &lt;enumeration value="grn"/>
* &lt;enumeration value="gsw"/>
* &lt;enumeration value="guj"/>
* &lt;enumeration value="gwi"/>
* &lt;enumeration value="hai"/>
* &lt;enumeration value="hat"/>
* &lt;enumeration value="hau"/>
* &lt;enumeration value="haw"/>
* &lt;enumeration value="heb"/>
* &lt;enumeration value="her"/>
* &lt;enumeration value="hil"/>
* &lt;enumeration value="him"/>
* &lt;enumeration value="hin"/>
* &lt;enumeration value="hit"/>
* &lt;enumeration value="hmn"/>
* &lt;enumeration value="hmo"/>
* &lt;enumeration value="hrv"/>
* &lt;enumeration value="hsb"/>
* &lt;enumeration value="hun"/>
* &lt;enumeration value="hup"/>
* &lt;enumeration value="iba"/>
* &lt;enumeration value="ibo"/>
* &lt;enumeration value="ice"/>
* &lt;enumeration value="ido"/>
* &lt;enumeration value="iii"/>
* &lt;enumeration value="ijo"/>
* &lt;enumeration value="iku"/>
* &lt;enumeration value="ile"/>
* &lt;enumeration value="ilo"/>
* &lt;enumeration value="ina"/>
* &lt;enumeration value="inc"/>
* &lt;enumeration value="ind"/>
* &lt;enumeration value="ine"/>
* &lt;enumeration value="inh"/>
* &lt;enumeration value="ipk"/>
* &lt;enumeration value="ira"/>
* &lt;enumeration value="iro"/>
* &lt;enumeration value="ita"/>
* &lt;enumeration value="jav"/>
* &lt;enumeration value="jbo"/>
* &lt;enumeration value="jpn"/>
* &lt;enumeration value="jpr"/>
* &lt;enumeration value="jrb"/>
* &lt;enumeration value="kaa"/>
* &lt;enumeration value="kab"/>
* &lt;enumeration value="kac"/>
* &lt;enumeration value="kal"/>
* &lt;enumeration value="kam"/>
* &lt;enumeration value="kan"/>
* &lt;enumeration value="kar"/>
* &lt;enumeration value="kas"/>
* &lt;enumeration value="kau"/>
* &lt;enumeration value="kaw"/>
* &lt;enumeration value="kaz"/>
* &lt;enumeration value="kbd"/>
* &lt;enumeration value="kha"/>
* &lt;enumeration value="khi"/>
* &lt;enumeration value="khm"/>
* &lt;enumeration value="kho"/>
* &lt;enumeration value="kik"/>
* &lt;enumeration value="kin"/>
* &lt;enumeration value="kir"/>
* &lt;enumeration value="kmb"/>
* &lt;enumeration value="kok"/>
* &lt;enumeration value="kom"/>
* &lt;enumeration value="kon"/>
* &lt;enumeration value="kor"/>
* &lt;enumeration value="kos"/>
* &lt;enumeration value="kpe"/>
* &lt;enumeration value="krc"/>
* &lt;enumeration value="krl"/>
* &lt;enumeration value="kro"/>
* &lt;enumeration value="kru"/>
* &lt;enumeration value="kua"/>
* &lt;enumeration value="kum"/>
* &lt;enumeration value="kur"/>
* &lt;enumeration value="kut"/>
* &lt;enumeration value="lad"/>
* &lt;enumeration value="lah"/>
* &lt;enumeration value="lam"/>
* &lt;enumeration value="lao"/>
* &lt;enumeration value="lat"/>
* &lt;enumeration value="lav"/>
* &lt;enumeration value="lez"/>
* &lt;enumeration value="lim"/>
* &lt;enumeration value="lin"/>
* &lt;enumeration value="lit"/>
* &lt;enumeration value="lol"/>
* &lt;enumeration value="loz"/>
* &lt;enumeration value="ltz"/>
* &lt;enumeration value="lua"/>
* &lt;enumeration value="lub"/>
* &lt;enumeration value="lug"/>
* &lt;enumeration value="lui"/>
* &lt;enumeration value="lun"/>
* &lt;enumeration value="luo"/>
* &lt;enumeration value="lus"/>
* &lt;enumeration value="mac"/>
* &lt;enumeration value="mad"/>
* &lt;enumeration value="mag"/>
* &lt;enumeration value="mah"/>
* &lt;enumeration value="mai"/>
* &lt;enumeration value="mak"/>
* &lt;enumeration value="mal"/>
* &lt;enumeration value="man"/>
* &lt;enumeration value="mao"/>
* &lt;enumeration value="map"/>
* &lt;enumeration value="mar"/>
* &lt;enumeration value="mas"/>
* &lt;enumeration value="may"/>
* &lt;enumeration value="mdf"/>
* &lt;enumeration value="mdr"/>
* &lt;enumeration value="men"/>
* &lt;enumeration value="mga"/>
* &lt;enumeration value="mic"/>
* &lt;enumeration value="min"/>
* &lt;enumeration value="mis"/>
* &lt;enumeration value="mkh"/>
* &lt;enumeration value="mlg"/>
* &lt;enumeration value="mlt"/>
* &lt;enumeration value="mnc"/>
* &lt;enumeration value="mni"/>
* &lt;enumeration value="mno"/>
* &lt;enumeration value="moh"/>
* &lt;enumeration value="mon"/>
* &lt;enumeration value="mos"/>
* &lt;enumeration value="mul"/>
* &lt;enumeration value="mun"/>
* &lt;enumeration value="mus"/>
* &lt;enumeration value="mwl"/>
* &lt;enumeration value="mwr"/>
* &lt;enumeration value="myn"/>
* &lt;enumeration value="myv"/>
* &lt;enumeration value="nah"/>
* &lt;enumeration value="nai"/>
* &lt;enumeration value="nap"/>
* &lt;enumeration value="nau"/>
* &lt;enumeration value="nav"/>
* &lt;enumeration value="nbl"/>
* &lt;enumeration value="nde"/>
* &lt;enumeration value="ndo"/>
* &lt;enumeration value="nds"/>
* &lt;enumeration value="nep"/>
* &lt;enumeration value="new"/>
* &lt;enumeration value="nia"/>
* &lt;enumeration value="nic"/>
* &lt;enumeration value="niu"/>
* &lt;enumeration value="nno"/>
* &lt;enumeration value="nob"/>
* &lt;enumeration value="nog"/>
* &lt;enumeration value="non"/>
* &lt;enumeration value="nor"/>
* &lt;enumeration value="nqo"/>
* &lt;enumeration value="nso"/>
* &lt;enumeration value="nub"/>
* &lt;enumeration value="nwc"/>
* &lt;enumeration value="nya"/>
* &lt;enumeration value="nym"/>
* &lt;enumeration value="nyn"/>
* &lt;enumeration value="nyo"/>
* &lt;enumeration value="nzi"/>
* &lt;enumeration value="oci"/>
* &lt;enumeration value="oji"/>
* &lt;enumeration value="ori"/>
* &lt;enumeration value="orm"/>
* &lt;enumeration value="osa"/>
* &lt;enumeration value="oss"/>
* &lt;enumeration value="ota"/>
* &lt;enumeration value="oto"/>
* &lt;enumeration value="paa"/>
* &lt;enumeration value="pag"/>
* &lt;enumeration value="pal"/>
* &lt;enumeration value="pam"/>
* &lt;enumeration value="pan"/>
* &lt;enumeration value="pap"/>
* &lt;enumeration value="pau"/>
* &lt;enumeration value="peo"/>
* &lt;enumeration value="per"/>
* &lt;enumeration value="phi"/>
* &lt;enumeration value="phn"/>
* &lt;enumeration value="pli"/>
* &lt;enumeration value="pol"/>
* &lt;enumeration value="pon"/>
* &lt;enumeration value="por"/>
* &lt;enumeration value="pra"/>
* &lt;enumeration value="pro"/>
* &lt;enumeration value="pus"/>
* &lt;enumeration value="qaa-qtz"/>
* &lt;enumeration value="que"/>
* &lt;enumeration value="raj"/>
* &lt;enumeration value="rap"/>
* &lt;enumeration value="rar"/>
* &lt;enumeration value="roa"/>
* &lt;enumeration value="roh"/>
* &lt;enumeration value="rom"/>
* &lt;enumeration value="rum"/>
* &lt;enumeration value="run"/>
* &lt;enumeration value="rup"/>
* &lt;enumeration value="rus"/>
* &lt;enumeration value="sad"/>
* &lt;enumeration value="sag"/>
* &lt;enumeration value="sah"/>
* &lt;enumeration value="sai"/>
* &lt;enumeration value="sal"/>
* &lt;enumeration value="sam"/>
* &lt;enumeration value="san"/>
* &lt;enumeration value="sas"/>
* &lt;enumeration value="sat"/>
* &lt;enumeration value="scn"/>
* &lt;enumeration value="sco"/>
* &lt;enumeration value="sel"/>
* &lt;enumeration value="sem"/>
* &lt;enumeration value="sga"/>
* &lt;enumeration value="sgn"/>
* &lt;enumeration value="shn"/>
* &lt;enumeration value="sid"/>
* &lt;enumeration value="sin"/>
* &lt;enumeration value="sio"/>
* &lt;enumeration value="sit"/>
* &lt;enumeration value="sla"/>
* &lt;enumeration value="slo"/>
* &lt;enumeration value="slv"/>
* &lt;enumeration value="sma"/>
* &lt;enumeration value="sme"/>
* &lt;enumeration value="smi"/>
* &lt;enumeration value="smj"/>
* &lt;enumeration value="smn"/>
* &lt;enumeration value="smo"/>
* &lt;enumeration value="sms"/>
* &lt;enumeration value="sna"/>
* &lt;enumeration value="snd"/>
* &lt;enumeration value="snk"/>
* &lt;enumeration value="sog"/>
* &lt;enumeration value="som"/>
* &lt;enumeration value="son"/>
* &lt;enumeration value="sot"/>
* &lt;enumeration value="spa"/>
* &lt;enumeration value="srd"/>
* &lt;enumeration value="srn"/>
* &lt;enumeration value="srp"/>
* &lt;enumeration value="srr"/>
* &lt;enumeration value="ssa"/>
* &lt;enumeration value="ssw"/>
* &lt;enumeration value="suk"/>
* &lt;enumeration value="sun"/>
* &lt;enumeration value="sus"/>
* &lt;enumeration value="sux"/>
* &lt;enumeration value="swa"/>
* &lt;enumeration value="swe"/>
* &lt;enumeration value="syc"/>
* &lt;enumeration value="syr"/>
* &lt;enumeration value="tah"/>
* &lt;enumeration value="tai"/>
* &lt;enumeration value="tam"/>
* &lt;enumeration value="tat"/>
* &lt;enumeration value="tel"/>
* &lt;enumeration value="tem"/>
* &lt;enumeration value="ter"/>
* &lt;enumeration value="tet"/>
* &lt;enumeration value="tgk"/>
* &lt;enumeration value="tgl"/>
* &lt;enumeration value="tha"/>
* &lt;enumeration value="tib"/>
* &lt;enumeration value="tig"/>
* &lt;enumeration value="tir"/>
* &lt;enumeration value="tiv"/>
* &lt;enumeration value="tkl"/>
* &lt;enumeration value="tlh"/>
* &lt;enumeration value="tli"/>
* &lt;enumeration value="tmh"/>
* &lt;enumeration value="tog"/>
* &lt;enumeration value="ton"/>
* &lt;enumeration value="tpi"/>
* &lt;enumeration value="tsi"/>
* &lt;enumeration value="tsn"/>
* &lt;enumeration value="tso"/>
* &lt;enumeration value="tuk"/>
* &lt;enumeration value="tum"/>
* &lt;enumeration value="tup"/>
* &lt;enumeration value="tur"/>
* &lt;enumeration value="tut"/>
* &lt;enumeration value="tvl"/>
* &lt;enumeration value="twi"/>
* &lt;enumeration value="tyv"/>
* &lt;enumeration value="udm"/>
* &lt;enumeration value="uga"/>
* &lt;enumeration value="uig"/>
* &lt;enumeration value="ukr"/>
* &lt;enumeration value="umb"/>
* &lt;enumeration value="und"/>
* &lt;enumeration value="urd"/>
* &lt;enumeration value="uzb"/>
* &lt;enumeration value="vai"/>
* &lt;enumeration value="ven"/>
* &lt;enumeration value="vie"/>
* &lt;enumeration value="vol"/>
* &lt;enumeration value="vot"/>
* &lt;enumeration value="wak"/>
* &lt;enumeration value="wal"/>
* &lt;enumeration value="war"/>
* &lt;enumeration value="was"/>
* &lt;enumeration value="wel"/>
* &lt;enumeration value="wen"/>
* &lt;enumeration value="wln"/>
* &lt;enumeration value="wol"/>
* &lt;enumeration value="xal"/>
* &lt;enumeration value="xho"/>
* &lt;enumeration value="yao"/>
* &lt;enumeration value="yap"/>
* &lt;enumeration value="yid"/>
* &lt;enumeration value="yor"/>
* &lt;enumeration value="ypk"/>
* &lt;enumeration value="zap"/>
* &lt;enumeration value="zbl"/>
* &lt;enumeration value="zen"/>
* &lt;enumeration value="zgh"/>
* &lt;enumeration value="zha"/>
* &lt;enumeration value="znd"/>
* &lt;enumeration value="zul"/>
* &lt;enumeration value="zun"/>
* &lt;enumeration value="zxx"/>
* &lt;enumeration value="zza"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="LayeredTextType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="layer">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="0"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="LayersType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Sectors" type="{}SectorsType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;attribute name="type">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="PTP"/>
* &lt;enumeration value="OTP"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="LinearMediaType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="ImageChecksums" type="{}ChecksumsType"/>
* &lt;element name="Checksums" type="{}ChecksumsType" minOccurs="0"/>
* &lt;element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="ImageInterleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="Interleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Package" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Interface" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Dimensions" type="{}DimensionsType" minOccurs="0"/>
* &lt;element name="Scans" type="{}ScansType" minOccurs="0"/>
* &lt;element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
* &lt;element name="PCMCIA" type="{}PCMCIAType" minOccurs="0"/>
* &lt;element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="MagazineType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
* &lt;element name="Cover" type="{}CoverType" minOccurs="0"/>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* &lt;element name="Number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/>
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Scan" type="{}ScanType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </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;
}
}

View 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>
* &lt;complexType name="MediaScanType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="MediaScanElement">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="up"/>
* &lt;enumeration value="down"/>
* &lt;enumeration value="front"/>
* &lt;enumeration value="back"/>
* &lt;enumeration value="left"/>
* &lt;enumeration value="right"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Scan" type="{}ScanType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="MultiMediaCardType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CID" type="{}DumpType"/>
* &lt;element name="CSD" type="{}DumpType" minOccurs="0"/>
* &lt;element name="ExtendedCSD" type="{}DumpType" minOccurs="0"/>
* &lt;element name="OCR" type="{}DumpType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="OCRType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Language" type="{}LanguagesType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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);
}
}

File diff suppressed because it is too large Load Diff

View 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>
* &lt;complexType name="PCIType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="VendorID">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
* &lt;minInclusive value="1"/>
* &lt;maxInclusive value="65534"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="DeviceID">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
* &lt;minInclusive value="1"/>
* &lt;maxInclusive value="65534"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Configuration" type="{}DumpType" minOccurs="0"/>
* &lt;element name="ExpansionROM" type="{}LinearMediaType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="PCMCIAType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CIS" type="{}DumpType"/>
* &lt;element name="Compliance" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ManufacturerCode" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
* &lt;element name="CardCode" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ProductName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="AdditionalInformation" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="PS3EncryptionType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="PartitionType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Sequence">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="FileSystems" type="{}FileSystemsType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="RecordingType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Broadcaster" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="BroadcastPlatform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="SourceFormat">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="ITU-A"/>
* &lt;enumeration value="ITU-B"/>
* &lt;enumeration value="ITU-C"/>
* &lt;enumeration value="ITU-D"/>
* &lt;enumeration value="ITU-E"/>
* &lt;enumeration value="ITU-F"/>
* &lt;enumeration value="ITU-G"/>
* &lt;enumeration value="ITU-H"/>
* &lt;enumeration value="ITU-I"/>
* &lt;enumeration value="ITU-J"/>
* &lt;enumeration value="ITU-K"/>
* &lt;enumeration value="ITU-L"/>
* &lt;enumeration value="ITU-M"/>
* &lt;enumeration value="ITU-N"/>
* &lt;enumeration value="PAL-B"/>
* &lt;enumeration value="SECAM-B"/>
* &lt;enumeration value="PAL-D"/>
* &lt;enumeration value="SECAM-D"/>
* &lt;enumeration value="PAL-G"/>
* &lt;enumeration value="SECAM-G"/>
* &lt;enumeration value="PAL-H"/>
* &lt;enumeration value="PAL-I"/>
* &lt;enumeration value="PAL-K"/>
* &lt;enumeration value="SECAM-K"/>
* &lt;enumeration value="NTSC-M"/>
* &lt;enumeration value="PAL-N"/>
* &lt;enumeration value="PAL-M"/>
* &lt;enumeration value="SECAM-M"/>
* &lt;enumeration value="MUSE"/>
* &lt;enumeration value="PALplus"/>
* &lt;enumeration value="FM"/>
* &lt;enumeration value="AM"/>
* &lt;enumeration value="COFDM"/>
* &lt;enumeration value="CAM-D"/>
* &lt;enumeration value="DAB"/>
* &lt;enumeration value="DAB+"/>
* &lt;enumeration value="DRM"/>
* &lt;enumeration value="DRM+"/>
* &lt;enumeration value="FMeXtra"/>
* &lt;enumeration value="ATSC"/>
* &lt;enumeration value="ATSC2"/>
* &lt;enumeration value="ATSC3"/>
* &lt;enumeration value="ATSC-M/H"/>
* &lt;enumeration value="DVB-T"/>
* &lt;enumeration value="DVB-T2"/>
* &lt;enumeration value="DVB-S"/>
* &lt;enumeration value="DVB-S2"/>
* &lt;enumeration value="DVB-S2X"/>
* &lt;enumeration value="DVB-C"/>
* &lt;enumeration value="DVB-C2"/>
* &lt;enumeration value="DVB-H"/>
* &lt;enumeration value="DVB-NGH"/>
* &lt;enumeration value="DVB-SH"/>
* &lt;enumeration value="ISDB-T"/>
* &lt;enumeration value="ISDB-Tb"/>
* &lt;enumeration value="ISDB-S"/>
* &lt;enumeration value="ISDB-C"/>
* &lt;enumeration value="1seg"/>
* &lt;enumeration value="DTMB"/>
* &lt;enumeration value="CCMB"/>
* &lt;enumeration value="T-DMB"/>
* &lt;enumeration value="S-DMB"/>
* &lt;enumeration value="IPTV"/>
* &lt;enumeration value="DVB-MT"/>
* &lt;enumeration value="DVB-MC"/>
* &lt;enumeration value="DVB-MS"/>
* &lt;enumeration value="ADR"/>
* &lt;enumeration value="SDR"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* &lt;element name="Software" type="{}SoftwareType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="Coordinates" type="{}CoordinatesType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="RequiredOperatingSystemType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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 RequiredOperatingSystemsType complex type.
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
*
* <pre>
* &lt;complexType name="RequiredOperatingSystemsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="RequiredOperatingSystem" type="{}RequiredOperatingSystemType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SCSIType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Inquiry" type="{}DumpType"/>
* &lt;element name="EVPD" type="{}EVPDType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="ModeSense" type="{}DumpType" minOccurs="0"/>
* &lt;element name="ModeSense10" type="{}DumpType" minOccurs="0"/>
* &lt;element name="LogSense" type="{}DumpType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ScanProcessingType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ScanType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="File" type="{}FileType"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="Scanner" type="{}ScannerType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="ScanProcessing" type="{}ScanProcessingType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element name="OCR" type="{}OCRType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ScannerType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="ScansType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CaseScan" type="{}CaseScanType" minOccurs="0"/>
* &lt;element name="Scan" type="{}MediaScanType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SectorsType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>unsignedLong">
* &lt;attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SecureDigitalType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CID" type="{}DumpType"/>
* &lt;element name="CSD" type="{}DumpType" minOccurs="0"/>
* &lt;element name="SCR" type="{}DumpType" minOccurs="0"/>
* &lt;element name="OCR" type="{}DumpType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SecuritySectorsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SequenceType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="MediaTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="TotalMedia">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Side" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
* &lt;maxInclusive value="2"/>
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Layer" minOccurs="0">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
* &lt;minInclusive value="0"/>
* &lt;maxInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SoftwareType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="OperatingSystem" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SubChannelType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SubcategoriesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Subcategory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SubtitleTracksType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Languages" type="{}LanguagesType" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="TrackNumber" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="SystemsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="System" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TapeFileType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TapeInformationType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Partition" type="{}TapePartitionType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TapePartitionType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;sequence>
* &lt;element name="File" type="{}TapeFileType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TrackFlagsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Quadraphonic">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Data">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="CopyPermitted">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="PreEmphasis">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}boolean">
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TrackIndexType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>int">
* &lt;attribute name="index" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TrackIndexesType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Index" type="{}TrackIndexType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TrackSequenceType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="Session">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="TrackType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Sequence" type="{}TrackSequenceType"/>
* &lt;element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* &lt;element name="Indexes" type="{}TrackIndexesType" minOccurs="0"/>
* &lt;element name="Flags" type="{}TrackFlagsType" minOccurs="0"/>
* &lt;element name="ISRC" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="TrackType">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="audio"/>
* &lt;enumeration value="mode0"/>
* &lt;enumeration value="mode1"/>
* &lt;enumeration value="mode2"/>
* &lt;enumeration value="m2f1"/>
* &lt;enumeration value="m2f2"/>
* &lt;enumeration value="dvd"/>
* &lt;enumeration value="hddvd"/>
* &lt;enumeration value="bluray"/>
* &lt;enumeration value="ddcd"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;element name="SubChannel" type="{}SubChannelType" minOccurs="0"/>
* &lt;element name="FileSystemInformation" type="{}FileSystemInformationType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="USBType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="VendorID">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
* &lt;minInclusive value="1"/>
* &lt;maxInclusive value="65534"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="ProductID">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
* &lt;minInclusive value="1"/>
* &lt;maxInclusive value="65534"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Descriptors" type="{}DumpType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="UserManualType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/>
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="Scan" type="{}ScanType" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </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;
}
}

View 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>
* &lt;complexType name="VariableBlockSizeType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="BlockSize" type="{}BlockSizeType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="VideoTracksType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Languages" type="{}LanguagesType" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="TrackNumber" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* &lt;minInclusive value="1"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="Horizontal" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;attribute name="Vertical" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* &lt;attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
* &lt;attribute name="ThreeD" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="XboxSecuritySectorsType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="RequestVersion" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="RequestNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* &lt;element name="SecuritySectors" type="{}DumpType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}

View 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>
* &lt;complexType name="XboxType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="PFI" type="{}DumpType"/>
* &lt;element name="DMI" type="{}DumpType"/>
* &lt;element name="SecuritySectors" type="{}XboxSecuritySectorsType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}
}