Update size of fields.

This commit is contained in:
2019-04-23 00:10:05 +01:00
parent 47f3458897
commit 9e6c00e177
85 changed files with 3189 additions and 2731 deletions

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,17 +2,19 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -29,10 +31,10 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="File" type="{}FileType"/&gt;
* &lt;element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Frames" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/&gt;
* &lt;element name="Duration" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Frames" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/&gt;
* &lt;element name="Duration" type="{http://www.w3.org/2001/XMLSchema}double"/&gt;
* &lt;element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="AudioTrack" type="{}AudioTracksType" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VideoTrack" type="{}VideoTracksType" maxOccurs="unbounded" minOccurs="0"/&gt;
@@ -69,14 +71,16 @@ public class AdvertisementType {
protected String product;
@XmlElement(name = "File", required = true)
protected FileType file;
@XmlElement(name = "FileSize")
protected long fileSize;
@XmlElement(name = "FileSize", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger fileSize;
@XmlElement(name = "Frames")
protected Long frames;
@XmlSchemaType(name = "unsignedLong")
protected BigInteger frames;
@XmlElement(name = "Duration")
protected long duration;
protected double duration;
@XmlElement(name = "MeanFrameRate")
protected Integer meanFrameRate;
protected Float meanFrameRate;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlElement(name = "AudioTrack")
@@ -163,16 +167,24 @@ public class AdvertisementType {
/**
* Obtiene el valor de la propiedad fileSize.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getFileSize() {
public BigInteger getFileSize() {
return fileSize;
}
/**
* Define el valor de la propiedad fileSize.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setFileSize(long value) {
public void setFileSize(BigInteger value) {
this.fileSize = value;
}
@@ -181,10 +193,10 @@ public class AdvertisementType {
*
* @return
* possible object is
* {@link Long }
* {@link BigInteger }
*
*/
public Long getFrames() {
public BigInteger getFrames() {
return frames;
}
@@ -193,10 +205,10 @@ public class AdvertisementType {
*
* @param value
* allowed object is
* {@link Long }
* {@link BigInteger }
*
*/
public void setFrames(Long value) {
public void setFrames(BigInteger value) {
this.frames = value;
}
@@ -204,7 +216,7 @@ public class AdvertisementType {
* Obtiene el valor de la propiedad duration.
*
*/
public long getDuration() {
public double getDuration() {
return duration;
}
@@ -212,7 +224,7 @@ public class AdvertisementType {
* Define el valor de la propiedad duration.
*
*/
public void setDuration(long value) {
public void setDuration(double value) {
this.duration = value;
}
@@ -221,10 +233,10 @@ public class AdvertisementType {
*
* @return
* possible object is
* {@link Integer }
* {@link Float }
*
*/
public Integer getMeanFrameRate() {
public Float getMeanFrameRate() {
return meanFrameRate;
}
@@ -233,10 +245,10 @@ public class AdvertisementType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Float }
*
*/
public void setMeanFrameRate(Integer value) {
public void setMeanFrameRate(Float value) {
this.meanFrameRate = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
@@ -51,8 +53,9 @@ public class AudioBlockType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "AccoustID", required = true)
protected String accoustID;
@XmlElement(name = "Checksums", required = true)
@@ -87,16 +90,24 @@ public class AudioBlockType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}

View File

@@ -2,17 +2,19 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -31,7 +33,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="Sequence" type="{}SequenceType"/&gt;
* &lt;element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
@@ -73,8 +75,9 @@ public class AudioMediaType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlElement(name = "Sequence", required = true)
@@ -127,16 +130,24 @@ public class AudioMediaType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -12,6 +12,7 @@ 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;
@@ -29,15 +30,15 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/sequence&gt;
* &lt;attribute name="TrackNumber" use="required"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/attribute&gt;
* &lt;attribute name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
* &lt;attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
* &lt;attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /&gt;
* &lt;attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /&gt;
* &lt;attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /&gt;
* &lt;attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /&gt;
* &lt;attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
@@ -55,15 +56,16 @@ public class AudioTracksType {
@XmlElement(name = "Languages")
protected LanguagesType languages;
@XmlAttribute(name = "TrackNumber", required = true)
protected int trackNumber;
protected long trackNumber;
@XmlAttribute(name = "AccoustID")
protected String accoustID;
@XmlAttribute(name = "Codec", required = true)
protected String codec;
@XmlAttribute(name = "Channels", required = true)
protected int channels;
@XmlSchemaType(name = "unsignedInt")
protected long channels;
@XmlAttribute(name = "SampleRate", required = true)
protected int sampleRate;
protected double sampleRate;
@XmlAttribute(name = "MeanBitrate", required = true)
protected long meanBitrate;
@@ -95,7 +97,7 @@ public class AudioTracksType {
* Obtiene el valor de la propiedad trackNumber.
*
*/
public int getTrackNumber() {
public long getTrackNumber() {
return trackNumber;
}
@@ -103,7 +105,7 @@ public class AudioTracksType {
* Define el valor de la propiedad trackNumber.
*
*/
public void setTrackNumber(int value) {
public void setTrackNumber(long value) {
this.trackNumber = value;
}
@@ -159,7 +161,7 @@ public class AudioTracksType {
* Obtiene el valor de la propiedad channels.
*
*/
public int getChannels() {
public long getChannels() {
return channels;
}
@@ -167,7 +169,7 @@ public class AudioTracksType {
* Define el valor de la propiedad channels.
*
*/
public void setChannels(int value) {
public void setChannels(long value) {
this.channels = value;
}
@@ -175,7 +177,7 @@ public class AudioTracksType {
* Obtiene el valor de la propiedad sampleRate.
*
*/
public int getSampleRate() {
public double getSampleRate() {
return sampleRate;
}
@@ -183,7 +185,7 @@ public class AudioTracksType {
* Define el valor de la propiedad sampleRate.
*
*/
public void setSampleRate(int value) {
public void setSampleRate(double value) {
this.sampleRate = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,17 +2,19 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -29,7 +31,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="ContentChecksums" type="{}ChecksumsType"/&gt;
* &lt;element name="Sequence" type="{}SequenceType"/&gt;
@@ -40,9 +42,9 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="Interface" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="PhysicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="LogicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="LogicalBlocks" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="PhysicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="LogicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="LogicalBlocks" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="VariableBlockSize" type="{}VariableBlockSizeType" minOccurs="0"/&gt;
* &lt;element name="TapeInformation" type="{}TapeInformationType" minOccurs="0"/&gt;
* &lt;element name="Scans" type="{}ScansType" minOccurs="0"/&gt;
@@ -54,9 +56,9 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="SCSI" type="{}SCSIType" minOccurs="0"/&gt;
* &lt;element name="USB" type="{}USBType" minOccurs="0"/&gt;
* &lt;element name="MAM" type="{}DumpType" minOccurs="0"/&gt;
* &lt;element name="Heads" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/&gt;
* &lt;element name="Cylinders" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/&gt;
* &lt;element name="SectorsPerTrack" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/&gt;
* &lt;element name="Heads" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="Cylinders" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="SectorsPerTrack" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/&gt;
* &lt;element name="Track" type="{}BlockTrackType" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Dimensions" type="{}DimensionsType"/&gt;
@@ -115,8 +117,9 @@ public class BlockMediaType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlElement(name = "ContentChecksums", required = true)
@@ -138,11 +141,14 @@ public class BlockMediaType {
@XmlElement(name = "SerialNumber")
protected String serialNumber;
@XmlElement(name = "PhysicalBlockSize")
protected int physicalBlockSize;
@XmlSchemaType(name = "unsignedInt")
protected long physicalBlockSize;
@XmlElement(name = "LogicalBlockSize")
protected int logicalBlockSize;
@XmlElement(name = "LogicalBlocks")
protected long logicalBlocks;
@XmlSchemaType(name = "unsignedInt")
protected long logicalBlockSize;
@XmlElement(name = "LogicalBlocks", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger logicalBlocks;
@XmlElement(name = "VariableBlockSize")
protected VariableBlockSizeType variableBlockSize;
@XmlElement(name = "TapeInformation")
@@ -166,11 +172,14 @@ public class BlockMediaType {
@XmlElement(name = "MAM")
protected DumpType mam;
@XmlElement(name = "Heads")
protected Long heads;
@XmlSchemaType(name = "unsignedShort")
protected Integer heads;
@XmlElement(name = "Cylinders")
@XmlSchemaType(name = "unsignedInt")
protected Long cylinders;
@XmlElement(name = "SectorsPerTrack")
protected Long sectorsPerTrack;
@XmlSchemaType(name = "unsignedLong")
protected BigInteger sectorsPerTrack;
@XmlElement(name = "Track")
protected List<BlockTrackType> track;
@XmlElement(name = "CopyProtection")
@@ -213,16 +222,24 @@ public class BlockMediaType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -470,7 +487,7 @@ public class BlockMediaType {
* Obtiene el valor de la propiedad physicalBlockSize.
*
*/
public int getPhysicalBlockSize() {
public long getPhysicalBlockSize() {
return physicalBlockSize;
}
@@ -478,7 +495,7 @@ public class BlockMediaType {
* Define el valor de la propiedad physicalBlockSize.
*
*/
public void setPhysicalBlockSize(int value) {
public void setPhysicalBlockSize(long value) {
this.physicalBlockSize = value;
}
@@ -486,7 +503,7 @@ public class BlockMediaType {
* Obtiene el valor de la propiedad logicalBlockSize.
*
*/
public int getLogicalBlockSize() {
public long getLogicalBlockSize() {
return logicalBlockSize;
}
@@ -494,23 +511,31 @@ public class BlockMediaType {
* Define el valor de la propiedad logicalBlockSize.
*
*/
public void setLogicalBlockSize(int value) {
public void setLogicalBlockSize(long value) {
this.logicalBlockSize = value;
}
/**
* Obtiene el valor de la propiedad logicalBlocks.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getLogicalBlocks() {
public BigInteger getLogicalBlocks() {
return logicalBlocks;
}
/**
* Define el valor de la propiedad logicalBlocks.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setLogicalBlocks(long value) {
public void setLogicalBlocks(BigInteger value) {
this.logicalBlocks = value;
}
@@ -783,10 +808,10 @@ public class BlockMediaType {
*
* @return
* possible object is
* {@link Long }
* {@link Integer }
*
*/
public Long getHeads() {
public Integer getHeads() {
return heads;
}
@@ -795,10 +820,10 @@ public class BlockMediaType {
*
* @param value
* allowed object is
* {@link Long }
* {@link Integer }
*
*/
public void setHeads(Long value) {
public void setHeads(Integer value) {
this.heads = value;
}
@@ -831,10 +856,10 @@ public class BlockMediaType {
*
* @return
* possible object is
* {@link Long }
* {@link BigInteger }
*
*/
public Long getSectorsPerTrack() {
public BigInteger getSectorsPerTrack() {
return sectorsPerTrack;
}
@@ -843,10 +868,10 @@ public class BlockMediaType {
*
* @param value
* allowed object is
* {@link Long }
* {@link BigInteger }
*
*/
public void setSectorsPerTrack(Long value) {
public void setSectorsPerTrack(BigInteger value) {
this.sectorsPerTrack = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -11,6 +11,7 @@ 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;
@@ -23,8 +24,8 @@ import javax.xml.bind.annotation.XmlValue;
* <pre>
* &lt;complexType name="BlockSizeType"&gt;
* &lt;simpleContent&gt;
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;int"&gt;
* &lt;attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /&gt;
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;unsignedInt"&gt;
* &lt;attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /&gt;
* &lt;/extension&gt;
* &lt;/simpleContent&gt;
* &lt;/complexType&gt;
@@ -39,15 +40,17 @@ import javax.xml.bind.annotation.XmlValue;
public class BlockSizeType {
@XmlValue
protected int value;
@XmlSchemaType(name = "unsignedInt")
protected long value;
@XmlAttribute(name = "startingBlock", required = true)
protected int startingBlock;
@XmlSchemaType(name = "unsignedInt")
protected long startingBlock;
/**
* Obtiene el valor de la propiedad value.
*
*/
public int getValue() {
public long getValue() {
return value;
}
@@ -55,7 +58,7 @@ public class BlockSizeType {
* Define el valor de la propiedad value.
*
*/
public void setValue(int value) {
public void setValue(long value) {
this.value = value;
}
@@ -63,7 +66,7 @@ public class BlockSizeType {
* Obtiene el valor de la propiedad startingBlock.
*
*/
public int getStartingBlock() {
public long getStartingBlock() {
return startingBlock;
}
@@ -71,7 +74,7 @@ public class BlockSizeType {
* Define el valor de la propiedad startingBlock.
*
*/
public void setStartingBlock(int value) {
public void setStartingBlock(long value) {
this.startingBlock = value;
}

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,13 +29,13 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Head" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Head" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
@@ -61,20 +63,27 @@ public class BlockTrackType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Head")
protected long head;
@XmlSchemaType(name = "unsignedShort")
protected int head;
@XmlElement(name = "Cylinder")
@XmlSchemaType(name = "unsignedInt")
protected long cylinder;
@XmlElement(name = "StartSector")
protected long startSector;
@XmlElement(name = "EndSector")
protected long endSector;
@XmlElement(name = "Sectors")
protected long sectors;
@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")
protected int bytesPerSector;
@XmlSchemaType(name = "unsignedInt")
protected long bytesPerSector;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlElement(name = "Format")
@@ -107,16 +116,24 @@ public class BlockTrackType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -124,7 +141,7 @@ public class BlockTrackType {
* Obtiene el valor de la propiedad head.
*
*/
public long getHead() {
public int getHead() {
return head;
}
@@ -132,7 +149,7 @@ public class BlockTrackType {
* Define el valor de la propiedad head.
*
*/
public void setHead(long value) {
public void setHead(int value) {
this.head = value;
}
@@ -155,48 +172,72 @@ public class BlockTrackType {
/**
* Obtiene el valor de la propiedad startSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getStartSector() {
public BigInteger getStartSector() {
return startSector;
}
/**
* Define el valor de la propiedad startSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartSector(long value) {
public void setStartSector(BigInteger value) {
this.startSector = value;
}
/**
* Obtiene el valor de la propiedad endSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getEndSector() {
public BigInteger getEndSector() {
return endSector;
}
/**
* Define el valor de la propiedad endSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEndSector(long value) {
public void setEndSector(BigInteger value) {
this.endSector = value;
}
/**
* Obtiene el valor de la propiedad sectors.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSectors() {
public BigInteger getSectors() {
return sectors;
}
/**
* Define el valor de la propiedad sectors.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSectors(long value) {
public void setSectors(BigInteger value) {
this.sectors = value;
}
@@ -204,7 +245,7 @@ public class BlockTrackType {
* Obtiene el valor de la propiedad bytesPerSector.
*
*/
public int getBytesPerSector() {
public long getBytesPerSector() {
return bytesPerSector;
}
@@ -212,7 +253,7 @@ public class BlockTrackType {
* Define el valor de la propiedad bytesPerSector.
*
*/
public void setBytesPerSector(int value) {
public void setBytesPerSector(long value) {
this.bytesPerSector = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -33,7 +33,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Scan" type="{}ScanType"/&gt;
* &lt;/sequence&gt;
@@ -75,7 +75,8 @@ public class BookType {
@XmlElement(name = "Language")
protected LanguagesType language;
@XmlElement(name = "Pages")
protected Integer pages;
@XmlSchemaType(name = "unsignedInt")
protected Long pages;
@XmlElement(name = "PageSize")
protected String pageSize;
@XmlElement(name = "Scan", required = true)
@@ -254,10 +255,10 @@ public class BookType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getPages() {
public Long getPages() {
return pages;
}
@@ -266,10 +267,10 @@ public class BookType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setPages(Integer value) {
public void setPages(Long value) {
this.pages = value;
}

View File

@@ -2,16 +2,18 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -26,12 +28,12 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;/sequence&gt;
* &lt;attribute name="session"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
@@ -53,12 +55,13 @@ public class BorderType {
@XmlElement(name = "Image", required = true)
protected String image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlAttribute(name = "session")
protected Integer session;
protected Long session;
/**
* Obtiene el valor de la propiedad image.
@@ -87,16 +90,24 @@ public class BorderType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -129,10 +140,10 @@ public class BorderType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getSession() {
public Long getSession() {
return session;
}
@@ -141,10 +152,10 @@ public class BorderType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setSession(Integer value) {
public void setSession(Long value) {
this.session = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -28,7 +30,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
@@ -48,8 +50,9 @@ public class DumpType {
@XmlElement(name = "Image", required = true)
protected String image;
@XmlElement(name = "Size")
protected int size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@@ -80,16 +83,24 @@ public class DumpType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public int getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(int value) {
public void setSize(BigInteger value) {
this.size = value;
}

View File

@@ -2,16 +2,18 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -26,12 +28,12 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;/sequence&gt;
* &lt;attribute name="page"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;maxInclusive value="255"/&gt;
* &lt;/restriction&gt;
@@ -54,12 +56,13 @@ public class EVPDType {
@XmlElement(name = "Image", required = true)
protected String image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlAttribute(name = "page")
protected Integer page;
protected Short page;
/**
* Obtiene el valor de la propiedad image.
@@ -88,16 +91,24 @@ public class EVPDType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -130,10 +141,10 @@ public class EVPDType {
*
* @return
* possible object is
* {@link Integer }
* {@link Short }
*
*/
public Integer getPage() {
public Short getPage() {
return page;
}
@@ -142,10 +153,10 @@ public class EVPDType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Short }
*
*/
public void setPage(Integer value) {
public void setPage(Short value) {
this.page = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,12 +2,13 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
package generated;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
@@ -32,13 +33,13 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
* &lt;element name="ModificationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
* &lt;element name="BackupDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
* &lt;element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Files" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/&gt;
* &lt;element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Files" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/&gt;
* &lt;element name="Bootable" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="VolumeSerial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="VolumeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/&gt;
* &lt;element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/&gt;
* &lt;element name="Dirty" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="ExpirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
* &lt;element name="EffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
@@ -93,11 +94,14 @@ public class FileSystemType {
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar backupDate;
@XmlElement(name = "ClusterSize")
protected int clusterSize;
@XmlElement(name = "Clusters")
protected long clusters;
@XmlSchemaType(name = "unsignedInt")
protected long clusterSize;
@XmlElement(name = "Clusters", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger clusters;
@XmlElement(name = "Files")
protected Long files;
@XmlSchemaType(name = "unsignedLong")
protected BigInteger files;
@XmlElement(name = "Bootable")
protected boolean bootable;
@XmlElement(name = "VolumeSerial")
@@ -105,7 +109,8 @@ public class FileSystemType {
@XmlElement(name = "VolumeName")
protected String volumeName;
@XmlElement(name = "FreeClusters")
protected Long freeClusters;
@XmlSchemaType(name = "unsignedLong")
protected BigInteger freeClusters;
@XmlElement(name = "Dirty")
protected boolean dirty;
@XmlElement(name = "ExpirationDate")
@@ -227,7 +232,7 @@ public class FileSystemType {
* Obtiene el valor de la propiedad clusterSize.
*
*/
public int getClusterSize() {
public long getClusterSize() {
return clusterSize;
}
@@ -235,23 +240,31 @@ public class FileSystemType {
* Define el valor de la propiedad clusterSize.
*
*/
public void setClusterSize(int value) {
public void setClusterSize(long value) {
this.clusterSize = value;
}
/**
* Obtiene el valor de la propiedad clusters.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getClusters() {
public BigInteger getClusters() {
return clusters;
}
/**
* Define el valor de la propiedad clusters.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setClusters(long value) {
public void setClusters(BigInteger value) {
this.clusters = value;
}
@@ -260,10 +273,10 @@ public class FileSystemType {
*
* @return
* possible object is
* {@link Long }
* {@link BigInteger }
*
*/
public Long getFiles() {
public BigInteger getFiles() {
return files;
}
@@ -272,10 +285,10 @@ public class FileSystemType {
*
* @param value
* allowed object is
* {@link Long }
* {@link BigInteger }
*
*/
public void setFiles(Long value) {
public void setFiles(BigInteger value) {
this.files = value;
}
@@ -348,10 +361,10 @@ public class FileSystemType {
*
* @return
* possible object is
* {@link Long }
* {@link BigInteger }
*
*/
public Long getFreeClusters() {
public BigInteger getFreeClusters() {
return freeClusters;
}
@@ -360,10 +373,10 @@ public class FileSystemType {
*
* @param value
* allowed object is
* {@link Long }
* {@link BigInteger }
*
*/
public void setFreeClusters(Long value) {
public void setFreeClusters(BigInteger value) {
this.freeClusters = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -28,7 +30,7 @@ import javax.xml.bind.annotation.XmlValue;
* &lt;simpleContent&gt;
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;string"&gt;
* &lt;attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
* &lt;attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}long" /&gt;
* &lt;attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" /&gt;
* &lt;/extension&gt;
* &lt;/simpleContent&gt;
* &lt;/complexType&gt;
@@ -47,7 +49,8 @@ public class ImageType {
@XmlAttribute(name = "format")
protected String format;
@XmlAttribute(name = "offset")
protected Long offset;
@XmlSchemaType(name = "unsignedLong")
protected BigInteger offset;
/**
* Obtiene el valor de la propiedad value.
@@ -102,10 +105,10 @@ public class ImageType {
*
* @return
* possible object is
* {@link Long }
* {@link BigInteger }
*
*/
public Long getOffset() {
public BigInteger getOffset() {
return offset;
}
@@ -114,10 +117,10 @@ public class ImageType {
*
* @param value
* allowed object is
* {@link Long }
* {@link BigInteger }
*
*/
public void setOffset(Long value) {
public void setOffset(BigInteger value) {
this.offset = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -26,7 +26,7 @@ import javax.xml.bind.annotation.XmlValue;
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;string"&gt;
* &lt;attribute name="layer"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="0"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
@@ -47,7 +47,7 @@ public class LayeredTextType {
@XmlValue
protected String value;
@XmlAttribute(name = "layer")
protected Integer layer;
protected Long layer;
/**
* Obtiene el valor de la propiedad value.
@@ -78,10 +78,10 @@ public class LayeredTextType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getLayer() {
public Long getLayer() {
return layer;
}
@@ -90,10 +90,10 @@ public class LayeredTextType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setLayer(Integer value) {
public void setLayer(Long value) {
this.layer = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -29,15 +31,15 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="ImageChecksums" type="{}ChecksumsType"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType" minOccurs="0"/&gt;
* &lt;element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="ImageInterleave" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Interleave" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="ImageInterleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="Interleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Package" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
@@ -81,8 +83,9 @@ public class LinearMediaType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "ImageChecksums", required = true)
protected ChecksumsType imageChecksums;
@XmlElement(name = "Checksums")
@@ -94,11 +97,14 @@ public class LinearMediaType {
@XmlElement(name = "Title", required = true)
protected String title;
@XmlElement(name = "Sequence")
protected Integer sequence;
@XmlSchemaType(name = "unsignedInt")
protected Long sequence;
@XmlElement(name = "ImageInterleave")
protected Integer imageInterleave;
@XmlSchemaType(name = "unsignedInt")
protected Long imageInterleave;
@XmlElement(name = "Interleave")
protected Integer interleave;
@XmlSchemaType(name = "unsignedInt")
protected Long interleave;
@XmlElement(name = "Manufacturer")
protected String manufacturer;
@XmlElement(name = "Model")
@@ -145,16 +151,24 @@ public class LinearMediaType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -283,10 +297,10 @@ public class LinearMediaType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getSequence() {
public Long getSequence() {
return sequence;
}
@@ -295,10 +309,10 @@ public class LinearMediaType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setSequence(Integer value) {
public void setSequence(Long value) {
this.sequence = value;
}
@@ -307,10 +321,10 @@ public class LinearMediaType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getImageInterleave() {
public Long getImageInterleave() {
return imageInterleave;
}
@@ -319,10 +333,10 @@ public class LinearMediaType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setImageInterleave(Integer value) {
public void setImageInterleave(Long value) {
this.imageInterleave = value;
}
@@ -331,10 +345,10 @@ public class LinearMediaType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getInterleave() {
public Long getInterleave() {
return interleave;
}
@@ -343,10 +357,10 @@ public class LinearMediaType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setInterleave(Integer value) {
public void setInterleave(Long value) {
this.interleave = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -31,9 +31,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Scan" type="{}ScanType" minOccurs="0"/&gt;
* &lt;/sequence&gt;
@@ -71,11 +71,13 @@ public class MagazineType {
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar publicationDate;
@XmlElement(name = "Number")
protected Integer number;
@XmlSchemaType(name = "unsignedInt")
protected Long number;
@XmlElement(name = "Language")
protected LanguagesType language;
@XmlElement(name = "Pages")
protected Integer pages;
@XmlSchemaType(name = "unsignedInt")
protected Long pages;
@XmlElement(name = "PageSize")
protected String pageSize;
@XmlElement(name = "Scan")
@@ -206,10 +208,10 @@ public class MagazineType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getNumber() {
public Long getNumber() {
return number;
}
@@ -218,10 +220,10 @@ public class MagazineType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setNumber(Integer value) {
public void setNumber(Long value) {
this.number = value;
}
@@ -254,10 +256,10 @@ public class MagazineType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getPages() {
public Long getPages() {
return pages;
}
@@ -266,10 +268,10 @@ public class MagazineType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setPages(Integer value) {
public void setPages(Long value) {
this.pages = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,17 +2,19 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Sequence" type="{}SequenceType"/&gt;
* &lt;element name="Layers" type="{}LayersType" minOccurs="0"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
@@ -41,8 +43,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="DiscType" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="DiscSubType" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Tracks" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded"/&gt;
* &lt;element name="Sessions" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Tracks" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded"/&gt;
* &lt;element name="Sessions" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Dimensions" type="{}DimensionsType"/&gt;
* &lt;element name="Case" type="{}CaseType" minOccurs="0"/&gt;
@@ -131,8 +133,9 @@ public class OpticalDiscType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Sequence", required = true)
protected SequenceType sequence;
@XmlElement(name = "Layers")
@@ -159,10 +162,12 @@ public class OpticalDiscType {
protected String discSubType;
@XmlElement(name = "Offset")
protected Integer offset;
@XmlElement(name = "Tracks", type = Integer.class)
protected List<Integer> tracks;
@XmlElement(name = "Tracks", type = Long.class)
@XmlSchemaType(name = "unsignedInt")
protected List<Long> tracks;
@XmlElement(name = "Sessions")
protected int sessions;
@XmlSchemaType(name = "unsignedInt")
protected long sessions;
@XmlElement(name = "CopyProtection")
protected String copyProtection;
@XmlElement(name = "Dimensions", required = true)
@@ -247,16 +252,24 @@ public class OpticalDiscType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -615,13 +628,13 @@ public class OpticalDiscType {
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
* {@link Long }
*
*
*/
public List<Integer> getTracks() {
public List<Long> getTracks() {
if (tracks == null) {
tracks = new ArrayList<Integer>();
tracks = new ArrayList<Long>();
}
return this.tracks;
}
@@ -630,7 +643,7 @@ public class OpticalDiscType {
* Obtiene el valor de la propiedad sessions.
*
*/
public int getSessions() {
public long getSessions() {
return sessions;
}
@@ -638,7 +651,7 @@ public class OpticalDiscType {
* Define el valor de la propiedad sessions.
*
*/
public void setSessions(int value) {
public void setSessions(long value) {
this.sessions = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;sequence&gt;
* &lt;element name="VendorID"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;maxInclusive value="65534"/&gt;
* &lt;/restriction&gt;
@@ -36,7 +36,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/element&gt;
* &lt;element name="DeviceID"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;maxInclusive value="65534"/&gt;
* &lt;/restriction&gt;

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -26,15 +28,15 @@ import javax.xml.bind.annotation.XmlType;
* &lt;sequence&gt;
* &lt;element name="Sequence"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="FileSystems" type="{}FileSystemsType"/&gt;
* &lt;/sequence&gt;
@@ -58,15 +60,17 @@ import javax.xml.bind.annotation.XmlType;
public class PartitionType {
@XmlElement(name = "Sequence")
protected int sequence;
protected long sequence;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "Type")
protected String type;
@XmlElement(name = "StartSector")
protected int startSector;
@XmlElement(name = "EndSector")
protected int endSector;
@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)
@@ -76,7 +80,7 @@ public class PartitionType {
* Obtiene el valor de la propiedad sequence.
*
*/
public int getSequence() {
public long getSequence() {
return sequence;
}
@@ -84,7 +88,7 @@ public class PartitionType {
* Define el valor de la propiedad sequence.
*
*/
public void setSequence(int value) {
public void setSequence(long value) {
this.sequence = value;
}
@@ -139,32 +143,48 @@ public class PartitionType {
/**
* Obtiene el valor de la propiedad startSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public int getStartSector() {
public BigInteger getStartSector() {
return startSector;
}
/**
* Define el valor de la propiedad startSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartSector(int value) {
public void setStartSector(BigInteger value) {
this.startSector = value;
}
/**
* Obtiene el valor de la propiedad endSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public int getEndSector() {
public BigInteger getEndSector() {
return endSector;
}
/**
* Define el valor de la propiedad endSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEndSector(int value) {
public void setEndSector(BigInteger value) {
this.endSector = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -23,8 +25,8 @@ import javax.xml.bind.annotation.XmlValue;
* <pre>
* &lt;complexType name="SectorsType"&gt;
* &lt;simpleContent&gt;
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;long"&gt;
* &lt;attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}int" /&gt;
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;unsignedLong"&gt;
* &lt;attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /&gt;
* &lt;/extension&gt;
* &lt;/simpleContent&gt;
* &lt;/complexType&gt;
@@ -39,23 +41,33 @@ import javax.xml.bind.annotation.XmlValue;
public class SectorsType {
@XmlValue
protected long value;
@XmlSchemaType(name = "unsignedLong")
protected BigInteger value;
@XmlAttribute(name = "layer")
protected Integer layer;
@XmlSchemaType(name = "unsignedInt")
protected Long layer;
/**
* Obtiene el valor de la propiedad value.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getValue() {
public BigInteger getValue() {
return value;
}
/**
* Define el valor de la propiedad value.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setValue(long value) {
public void setValue(BigInteger value) {
this.value = value;
}
@@ -64,10 +76,10 @@ public class SectorsType {
*
* @return
* possible object is
* {@link Integer }
* {@link Long }
*
*/
public Integer getLayer() {
public Long getLayer() {
return layer;
}
@@ -76,10 +88,10 @@ public class SectorsType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Long }
*
*/
public void setLayer(Integer value) {
public void setLayer(Long value) {
this.layer = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,8 +29,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Start" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="End" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
@@ -44,40 +46,58 @@ import javax.xml.bind.annotation.XmlType;
})
public class SecuritySectorsType {
@XmlElement(name = "Start")
protected long start;
@XmlElement(name = "End")
protected long end;
@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 long getStart() {
public BigInteger getStart() {
return start;
}
/**
* Define el valor de la propiedad start.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStart(long value) {
public void setStart(BigInteger value) {
this.start = value;
}
/**
* Obtiene el valor de la propiedad end.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getEnd() {
public BigInteger getEnd() {
return end;
}
/**
* Define el valor de la propiedad end.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEnd(long value) {
public void setEnd(BigInteger value) {
this.end = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -11,6 +11,7 @@ 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;
@@ -28,17 +29,17 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="MediaTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="TotalMedia"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="Side" minOccurs="0"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte"&gt;
* &lt;maxInclusive value="2"/&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
@@ -46,7 +47,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/element&gt;
* &lt;element name="Layer" minOccurs="0"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte"&gt;
* &lt;minInclusive value="0"/&gt;
* &lt;maxInclusive value="1"/&gt;
* &lt;/restriction&gt;
@@ -73,13 +74,14 @@ public class SequenceType {
@XmlElement(name = "MediaTitle")
protected String mediaTitle;
@XmlElement(name = "MediaSequence")
protected int mediaSequence;
@XmlSchemaType(name = "unsignedInt")
protected long mediaSequence;
@XmlElement(name = "TotalMedia")
protected int totalMedia;
protected long totalMedia;
@XmlElement(name = "Side")
protected Integer side;
protected Short side;
@XmlElement(name = "Layer")
protected Integer layer;
protected Short layer;
/**
* Obtiene el valor de la propiedad mediaTitle.
@@ -109,7 +111,7 @@ public class SequenceType {
* Obtiene el valor de la propiedad mediaSequence.
*
*/
public int getMediaSequence() {
public long getMediaSequence() {
return mediaSequence;
}
@@ -117,7 +119,7 @@ public class SequenceType {
* Define el valor de la propiedad mediaSequence.
*
*/
public void setMediaSequence(int value) {
public void setMediaSequence(long value) {
this.mediaSequence = value;
}
@@ -125,7 +127,7 @@ public class SequenceType {
* Obtiene el valor de la propiedad totalMedia.
*
*/
public int getTotalMedia() {
public long getTotalMedia() {
return totalMedia;
}
@@ -133,7 +135,7 @@ public class SequenceType {
* Define el valor de la propiedad totalMedia.
*
*/
public void setTotalMedia(int value) {
public void setTotalMedia(long value) {
this.totalMedia = value;
}
@@ -142,10 +144,10 @@ public class SequenceType {
*
* @return
* possible object is
* {@link Integer }
* {@link Short }
*
*/
public Integer getSide() {
public Short getSide() {
return side;
}
@@ -154,10 +156,10 @@ public class SequenceType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Short }
*
*/
public void setSide(Integer value) {
public void setSide(Short value) {
this.side = value;
}
@@ -166,10 +168,10 @@ public class SequenceType {
*
* @return
* possible object is
* {@link Integer }
* {@link Short }
*
*/
public Integer getLayer() {
public Short getLayer() {
return layer;
}
@@ -178,10 +180,10 @@ public class SequenceType {
*
* @param value
* allowed object is
* {@link Integer }
* {@link Short }
*
*/
public void setLayer(Integer value) {
public void setLayer(Short value) {
this.layer = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
@@ -47,8 +49,9 @@ public class SubChannelType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Size", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger size;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@@ -79,16 +82,24 @@ public class SubChannelType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/sequence&gt;
* &lt;attribute name="TrackNumber" use="required"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
@@ -51,7 +51,7 @@ public class SubtitleTracksType {
@XmlElement(name = "Languages")
protected LanguagesType languages;
@XmlAttribute(name = "TrackNumber", required = true)
protected int trackNumber;
protected long trackNumber;
@XmlAttribute(name = "Codec", required = true)
protected String codec;
@@ -83,7 +83,7 @@ public class SubtitleTracksType {
* Obtiene el valor de la propiedad trackNumber.
*
*/
public int getTrackNumber() {
public long getTrackNumber() {
return trackNumber;
}
@@ -91,7 +91,7 @@ public class SubtitleTracksType {
* Define el valor de la propiedad trackNumber.
*
*/
public void setTrackNumber(int value) {
public void setTrackNumber(long value) {
this.trackNumber = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,11 +29,11 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
@@ -55,16 +57,21 @@ public class TapeFileType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Sequence")
protected long sequence;
@XmlElement(name = "BlockSize")
protected long blockSize;
@XmlElement(name = "StartBlock")
protected long startBlock;
@XmlElement(name = "EndBlock")
protected long endBlock;
@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;
@@ -95,80 +102,120 @@ public class TapeFileType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
/**
* Obtiene el valor de la propiedad sequence.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSequence() {
public BigInteger getSequence() {
return sequence;
}
/**
* Define el valor de la propiedad sequence.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSequence(long value) {
public void setSequence(BigInteger value) {
this.sequence = value;
}
/**
* Obtiene el valor de la propiedad blockSize.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getBlockSize() {
public BigInteger getBlockSize() {
return blockSize;
}
/**
* Define el valor de la propiedad blockSize.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setBlockSize(long value) {
public void setBlockSize(BigInteger value) {
this.blockSize = value;
}
/**
* Obtiene el valor de la propiedad startBlock.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getStartBlock() {
public BigInteger getStartBlock() {
return startBlock;
}
/**
* Define el valor de la propiedad startBlock.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartBlock(long value) {
public void setStartBlock(BigInteger value) {
this.startBlock = value;
}
/**
* Obtiene el valor de la propiedad endBlock.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getEndBlock() {
public BigInteger getEndBlock() {
return endBlock;
}
/**
* Define el valor de la propiedad endBlock.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEndBlock(long value) {
public void setEndBlock(BigInteger value) {
this.endBlock = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,17 +2,19 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -29,10 +31,10 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;sequence&gt;
* &lt;element name="File" type="{}TapeFileType" maxOccurs="unbounded"/&gt;
@@ -59,14 +61,18 @@ public class TapePartitionType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Sequence")
protected long sequence;
@XmlElement(name = "StartBlock")
protected long startBlock;
@XmlElement(name = "EndBlock")
protected long endBlock;
@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)
@@ -99,64 +105,96 @@ public class TapePartitionType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
/**
* Obtiene el valor de la propiedad sequence.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSequence() {
public BigInteger getSequence() {
return sequence;
}
/**
* Define el valor de la propiedad sequence.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSequence(long value) {
public void setSequence(BigInteger value) {
this.sequence = value;
}
/**
* Obtiene el valor de la propiedad startBlock.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getStartBlock() {
public BigInteger getStartBlock() {
return startBlock;
}
/**
* Define el valor de la propiedad startBlock.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartBlock(long value) {
public void setStartBlock(BigInteger value) {
this.startBlock = value;
}
/**
* Obtiene el valor de la propiedad endBlock.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getEndBlock() {
public BigInteger getEndBlock() {
return endBlock;
}
/**
* Define el valor de la propiedad endBlock.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEndBlock(long value) {
public void setEndBlock(BigInteger value) {
this.endBlock = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -11,6 +11,7 @@ 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;
@@ -27,10 +28,10 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="Session"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
@@ -51,15 +52,16 @@ import javax.xml.bind.annotation.XmlType;
public class TrackSequenceType {
@XmlElement(name = "TrackNumber")
protected int trackNumber;
@XmlSchemaType(name = "unsignedInt")
protected long trackNumber;
@XmlElement(name = "Session")
protected int session;
protected long session;
/**
* Obtiene el valor de la propiedad trackNumber.
*
*/
public int getTrackNumber() {
public long getTrackNumber() {
return trackNumber;
}
@@ -67,7 +69,7 @@ public class TrackSequenceType {
* Define el valor de la propiedad trackNumber.
*
*/
public void setTrackNumber(int value) {
public void setTrackNumber(long value) {
this.trackNumber = value;
}
@@ -75,7 +77,7 @@ public class TrackSequenceType {
* Obtiene el valor de la propiedad session.
*
*/
public int getSession() {
public long getSession() {
return session;
}
@@ -83,7 +85,7 @@ public class TrackSequenceType {
* Define el valor de la propiedad session.
*
*/
public void setSession(int value) {
public void setSession(long value) {
this.session = value;
}

View File

@@ -2,15 +2,17 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
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;
@@ -27,12 +29,12 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Image" type="{}ImageType"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="Sequence" type="{}TrackSequenceType"/&gt;
* &lt;element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/&gt;
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="TrackType"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
@@ -49,7 +51,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Checksums" type="{}ChecksumsType"/&gt;
* &lt;element name="SubChannel" type="{}SubChannelType" minOccurs="0"/&gt;
@@ -82,22 +84,26 @@ public class TrackType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@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")
protected long startSector;
@XmlElement(name = "EndSector")
protected long endSector;
@XmlElement(name = "StartSector", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger startSector;
@XmlElement(name = "EndSector", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger endSector;
@XmlElement(name = "TrackType", required = true)
protected String trackType;
@XmlElement(name = "BytesPerSector")
protected int bytesPerSector;
@XmlSchemaType(name = "unsignedInt")
protected long bytesPerSector;
@XmlElement(name = "AccoustID")
protected String accoustID;
@XmlElement(name = "Checksums", required = true)
@@ -134,16 +140,24 @@ public class TrackType {
/**
* Obtiene el valor de la propiedad size.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getSize() {
public BigInteger getSize() {
return size;
}
/**
* Define el valor de la propiedad size.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSize(long value) {
public void setSize(BigInteger value) {
this.size = value;
}
@@ -222,32 +236,48 @@ public class TrackType {
/**
* Obtiene el valor de la propiedad startSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getStartSector() {
public BigInteger getStartSector() {
return startSector;
}
/**
* Define el valor de la propiedad startSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartSector(long value) {
public void setStartSector(BigInteger value) {
this.startSector = value;
}
/**
* Obtiene el valor de la propiedad endSector.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public long getEndSector() {
public BigInteger getEndSector() {
return endSector;
}
/**
* Define el valor de la propiedad endSector.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEndSector(long value) {
public void setEndSector(BigInteger value) {
this.endSector = value;
}
@@ -279,7 +309,7 @@ public class TrackType {
* Obtiene el valor de la propiedad bytesPerSector.
*
*/
public int getBytesPerSector() {
public long getBytesPerSector() {
return bytesPerSector;
}
@@ -287,7 +317,7 @@ public class TrackType {
* Define el valor de la propiedad bytesPerSector.
*
*/
public void setBytesPerSector(int value) {
public void setBytesPerSector(long value) {
this.bytesPerSector = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;sequence&gt;
* &lt;element name="VendorID"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;maxInclusive value="65534"/&gt;
* &lt;/restriction&gt;
@@ -36,7 +36,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/element&gt;
* &lt;element name="ProductID"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;maxInclusive value="65534"/&gt;
* &lt;/restriction&gt;

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -11,6 +11,7 @@ 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;
@@ -28,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Language" type="{}LanguagesType" minOccurs="0"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Scan" type="{}ScanType" minOccurs="0"/&gt;
* &lt;/sequence&gt;
@@ -51,7 +52,8 @@ public class UserManualType {
@XmlElement(name = "Language")
protected LanguagesType language;
@XmlElement(name = "Pages")
protected int pages;
@XmlSchemaType(name = "unsignedInt")
protected long pages;
@XmlElement(name = "PageSize")
protected String pageSize;
@XmlElement(name = "Scan")
@@ -85,7 +87,7 @@ public class UserManualType {
* Obtiene el valor de la propiedad pages.
*
*/
public int getPages() {
public long getPages() {
return pages;
}
@@ -93,7 +95,7 @@ public class UserManualType {
* Define el valor de la propiedad pages.
*
*/
public void setPages(int value) {
public void setPages(long value) {
this.pages = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -12,6 +12,7 @@ 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;
@@ -29,14 +30,14 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/sequence&gt;
* &lt;attribute name="TrackNumber" use="required"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/attribute&gt;
* &lt;attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
* &lt;attribute name="Horizontal" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /&gt;
* &lt;attribute name="Vertical" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /&gt;
* &lt;attribute name="Horizontal" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /&gt;
* &lt;attribute name="Vertical" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /&gt;
* &lt;attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /&gt;
* &lt;attribute name="ThreeD" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /&gt;
* &lt;/restriction&gt;
@@ -55,13 +56,15 @@ public class VideoTracksType {
@XmlElement(name = "Languages")
protected LanguagesType languages;
@XmlAttribute(name = "TrackNumber", required = true)
protected int trackNumber;
protected long trackNumber;
@XmlAttribute(name = "Codec", required = true)
protected String codec;
@XmlAttribute(name = "Horizontal", required = true)
protected int horizontal;
@XmlSchemaType(name = "unsignedInt")
protected long horizontal;
@XmlAttribute(name = "Vertical", required = true)
protected int vertical;
@XmlSchemaType(name = "unsignedInt")
protected long vertical;
@XmlAttribute(name = "MeanBitrate", required = true)
protected long meanBitrate;
@XmlAttribute(name = "ThreeD", required = true)
@@ -95,7 +98,7 @@ public class VideoTracksType {
* Obtiene el valor de la propiedad trackNumber.
*
*/
public int getTrackNumber() {
public long getTrackNumber() {
return trackNumber;
}
@@ -103,7 +106,7 @@ public class VideoTracksType {
* Define el valor de la propiedad trackNumber.
*
*/
public void setTrackNumber(int value) {
public void setTrackNumber(long value) {
this.trackNumber = value;
}
@@ -135,7 +138,7 @@ public class VideoTracksType {
* Obtiene el valor de la propiedad horizontal.
*
*/
public int getHorizontal() {
public long getHorizontal() {
return horizontal;
}
@@ -143,7 +146,7 @@ public class VideoTracksType {
* Define el valor de la propiedad horizontal.
*
*/
public void setHorizontal(int value) {
public void setHorizontal(long value) {
this.horizontal = value;
}
@@ -151,7 +154,7 @@ public class VideoTracksType {
* Obtiene el valor de la propiedad vertical.
*
*/
public int getVertical() {
public long getVertical() {
return vertical;
}
@@ -159,7 +162,7 @@ public class VideoTracksType {
* Define el valor de la propiedad vertical.
*
*/
public void setVertical(int value) {
public void setVertical(long value) {
this.vertical = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//
@@ -11,6 +11,7 @@ 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;
@@ -24,8 +25,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="RequestVersion" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="RequestNumber" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="RequestVersion" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="RequestNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="SecuritySectors" type="{}DumpType"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
@@ -44,9 +45,11 @@ import javax.xml.bind.annotation.XmlType;
public class XboxSecuritySectorsType {
@XmlElement(name = "RequestVersion")
protected int requestVersion;
@XmlSchemaType(name = "unsignedInt")
protected long requestVersion;
@XmlElement(name = "RequestNumber")
protected int requestNumber;
@XmlSchemaType(name = "unsignedInt")
protected long requestNumber;
@XmlElement(name = "SecuritySectors", required = true)
protected DumpType securitySectors;
@@ -54,7 +57,7 @@ public class XboxSecuritySectorsType {
* Obtiene el valor de la propiedad requestVersion.
*
*/
public int getRequestVersion() {
public long getRequestVersion() {
return requestVersion;
}
@@ -62,7 +65,7 @@ public class XboxSecuritySectorsType {
* Define el valor de la propiedad requestVersion.
*
*/
public void setRequestVersion(int value) {
public void setRequestVersion(long value) {
this.requestVersion = value;
}
@@ -70,7 +73,7 @@ public class XboxSecuritySectorsType {
* Obtiene el valor de la propiedad requestNumber.
*
*/
public int getRequestNumber() {
public long getRequestNumber() {
return requestNumber;
}
@@ -78,7 +81,7 @@ public class XboxSecuritySectorsType {
* Define el valor de la propiedad requestNumber.
*
*/
public void setRequestNumber(int value) {
public void setRequestNumber(long value) {
this.requestNumber = value;
}

View File

@@ -2,7 +2,7 @@
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2019.04.22 a las 11:40:52 PM BST
// Generado el: 2019.04.22 a las 11:59:16 PM BST
//