2015-11-07 05:28:44 +00:00
|
|
|
//
|
2020-07-12 21:55:37 +01:00
|
|
|
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802
|
|
|
|
|
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
2017-06-08 21:53:29 +01:00
|
|
|
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
2020-07-12 22:44:22 +01:00
|
|
|
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
2015-11-07 05:28:44 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package generated;
|
|
|
|
|
|
2019-04-23 00:10:05 +01:00
|
|
|
import java.math.BigInteger;
|
2015-11-07 05:28:44 +00:00
|
|
|
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;
|
2019-04-23 00:10:05 +01:00
|
|
|
import javax.xml.bind.annotation.XmlSchemaType;
|
2015-11-07 05:28:44 +00:00
|
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>Clase Java para AdvertisementType complex type.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* <pre>
|
2020-07-12 21:55:37 +01:00
|
|
|
* <complexType name="AdvertisementType">
|
|
|
|
|
* <complexContent>
|
|
|
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
|
|
* <sequence>
|
|
|
|
|
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
|
|
|
* <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
|
|
|
* <element name="File" type="{}FileType"/>
|
|
|
|
|
* <element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
|
|
|
|
* <element name="Frames" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
|
|
|
|
* <element name="Duration" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
|
|
|
|
* <element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
|
|
|
|
|
* <element name="Checksums" type="{}ChecksumsType"/>
|
|
|
|
|
* <element name="AudioTrack" type="{}AudioTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
|
|
|
|
* <element name="VideoTrack" type="{}VideoTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
|
|
|
|
* <element name="SubtitleTrack" type="{}SubtitleTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
|
|
|
|
* <element name="Recording" type="{}RecordingType" minOccurs="0"/>
|
|
|
|
|
* </sequence>
|
|
|
|
|
* </restriction>
|
|
|
|
|
* </complexContent>
|
|
|
|
|
* </complexType>
|
2015-11-07 05:28:44 +00:00
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlType(name = "AdvertisementType", propOrder = {
|
|
|
|
|
"manufacturer",
|
|
|
|
|
"product",
|
|
|
|
|
"file",
|
|
|
|
|
"fileSize",
|
|
|
|
|
"frames",
|
|
|
|
|
"duration",
|
|
|
|
|
"meanFrameRate",
|
|
|
|
|
"checksums",
|
|
|
|
|
"audioTrack",
|
|
|
|
|
"videoTrack",
|
|
|
|
|
"subtitleTrack",
|
|
|
|
|
"recording"
|
|
|
|
|
})
|
|
|
|
|
public class AdvertisementType {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "Manufacturer", required = true)
|
|
|
|
|
protected String manufacturer;
|
|
|
|
|
@XmlElement(name = "Product", required = true)
|
|
|
|
|
protected String product;
|
|
|
|
|
@XmlElement(name = "File", required = true)
|
|
|
|
|
protected FileType file;
|
2019-04-23 00:10:05 +01:00
|
|
|
@XmlElement(name = "FileSize", required = true)
|
|
|
|
|
@XmlSchemaType(name = "unsignedLong")
|
|
|
|
|
protected BigInteger fileSize;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlElement(name = "Frames")
|
2019-04-23 00:10:05 +01:00
|
|
|
@XmlSchemaType(name = "unsignedLong")
|
|
|
|
|
protected BigInteger frames;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlElement(name = "Duration")
|
2019-04-23 00:10:05 +01:00
|
|
|
protected double duration;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlElement(name = "MeanFrameRate")
|
2019-04-23 00:10:05 +01:00
|
|
|
protected Float meanFrameRate;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlElement(name = "Checksums", required = true)
|
|
|
|
|
protected ChecksumsType checksums;
|
|
|
|
|
@XmlElement(name = "AudioTrack")
|
|
|
|
|
protected List<AudioTracksType> audioTrack;
|
|
|
|
|
@XmlElement(name = "VideoTrack")
|
|
|
|
|
protected List<VideoTracksType> videoTrack;
|
2015-11-09 05:43:32 +00:00
|
|
|
@XmlElement(name = "SubtitleTrack")
|
2015-11-07 05:28:44 +00:00
|
|
|
protected List<SubtitleTracksType> subtitleTrack;
|
|
|
|
|
@XmlElement(name = "Recording")
|
|
|
|
|
protected RecordingType recording;
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad manufacturer.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getManufacturer() {
|
|
|
|
|
return manufacturer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad manufacturer.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setManufacturer(String value) {
|
|
|
|
|
this.manufacturer = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad product.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getProduct() {
|
|
|
|
|
return product;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad product.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setProduct(String value) {
|
|
|
|
|
this.product = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad file.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link FileType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public FileType getFile() {
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad file.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link FileType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setFile(FileType value) {
|
|
|
|
|
this.file = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad fileSize.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
2019-04-23 00:10:05 +01:00
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link BigInteger }
|
|
|
|
|
*
|
2015-11-07 05:28:44 +00:00
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public BigInteger getFileSize() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return fileSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad fileSize.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
2019-04-23 00:10:05 +01:00
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link BigInteger }
|
|
|
|
|
*
|
2015-11-07 05:28:44 +00:00
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setFileSize(BigInteger value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.fileSize = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad frames.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
2019-04-23 00:10:05 +01:00
|
|
|
* {@link BigInteger }
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public BigInteger getFrames() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad frames.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
2019-04-23 00:10:05 +01:00
|
|
|
* {@link BigInteger }
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setFrames(BigInteger value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.frames = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad duration.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public double getDuration() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return duration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad duration.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setDuration(double value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.duration = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad meanFrameRate.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
2019-04-23 00:10:05 +01:00
|
|
|
* {@link Float }
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public Float getMeanFrameRate() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return meanFrameRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad meanFrameRate.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
2019-04-23 00:10:05 +01:00
|
|
|
* {@link Float }
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setMeanFrameRate(Float value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.meanFrameRate = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad checksums.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link ChecksumsType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public ChecksumsType getChecksums() {
|
|
|
|
|
return checksums;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad checksums.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link ChecksumsType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setChecksums(ChecksumsType value) {
|
|
|
|
|
this.checksums = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the value of the audioTrack property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* This accessor method returns a reference to the live list,
|
|
|
|
|
* not a snapshot. Therefore any modification you make to the
|
|
|
|
|
* returned list will be present inside the JAXB object.
|
|
|
|
|
* This is why there is not a <CODE>set</CODE> method for the audioTrack property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* For example, to add a new item, do as follows:
|
|
|
|
|
* <pre>
|
|
|
|
|
* getAudioTrack().add(newItem);
|
|
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* Objects of the following type(s) are allowed in the list
|
|
|
|
|
* {@link AudioTracksType }
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public List<AudioTracksType> getAudioTrack() {
|
|
|
|
|
if (audioTrack == null) {
|
|
|
|
|
audioTrack = new ArrayList<AudioTracksType>();
|
|
|
|
|
}
|
|
|
|
|
return this.audioTrack;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the value of the videoTrack property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* This accessor method returns a reference to the live list,
|
|
|
|
|
* not a snapshot. Therefore any modification you make to the
|
|
|
|
|
* returned list will be present inside the JAXB object.
|
|
|
|
|
* This is why there is not a <CODE>set</CODE> method for the videoTrack property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* For example, to add a new item, do as follows:
|
|
|
|
|
* <pre>
|
|
|
|
|
* getVideoTrack().add(newItem);
|
|
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* Objects of the following type(s) are allowed in the list
|
|
|
|
|
* {@link VideoTracksType }
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public List<VideoTracksType> getVideoTrack() {
|
|
|
|
|
if (videoTrack == null) {
|
|
|
|
|
videoTrack = new ArrayList<VideoTracksType>();
|
|
|
|
|
}
|
|
|
|
|
return this.videoTrack;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the value of the subtitleTrack property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* This accessor method returns a reference to the live list,
|
|
|
|
|
* not a snapshot. Therefore any modification you make to the
|
|
|
|
|
* returned list will be present inside the JAXB object.
|
|
|
|
|
* This is why there is not a <CODE>set</CODE> method for the subtitleTrack property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* For example, to add a new item, do as follows:
|
|
|
|
|
* <pre>
|
|
|
|
|
* getSubtitleTrack().add(newItem);
|
|
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* Objects of the following type(s) are allowed in the list
|
|
|
|
|
* {@link SubtitleTracksType }
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public List<SubtitleTracksType> getSubtitleTrack() {
|
|
|
|
|
if (subtitleTrack == null) {
|
|
|
|
|
subtitleTrack = new ArrayList<SubtitleTracksType>();
|
|
|
|
|
}
|
|
|
|
|
return this.subtitleTrack;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad recording.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link RecordingType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public RecordingType getRecording() {
|
|
|
|
|
return recording;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad recording.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link RecordingType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setRecording(RecordingType value) {
|
|
|
|
|
this.recording = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|