379 lines
9.6 KiB
Java
379 lines
9.6 KiB
Java
//
|
|
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
|
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
|
// Any modifications to this file will be lost upon recompilation of the source schema.
|
|
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
|
//
|
|
|
|
|
|
package generated;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* <p>Java class for AdvertisementType complex type.
|
|
*
|
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
*
|
|
* <pre>
|
|
* <complexType name="AdvertisementType">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
* <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
* <element name="File" type="{}FileType"/>
|
|
* <element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
|
* <element name="Frames" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
|
* <element name="Duration" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
|
* <element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}int" 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"/>
|
|
* <element name="Recording" type="{}RecordingType" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "AdvertisementType", propOrder = {
|
|
"manufacturer",
|
|
"product",
|
|
"file",
|
|
"fileSize",
|
|
"frames",
|
|
"duration",
|
|
"meanFrameRate",
|
|
"checksums",
|
|
"audioTrack",
|
|
"videoTrack",
|
|
"subtitleTrack",
|
|
"recording"
|
|
})
|
|
public class AdvertisementType {
|
|
|
|
@XmlElement(name = "Manufacturer", required = true)
|
|
protected String manufacturer;
|
|
@XmlElement(name = "Product", required = true)
|
|
protected String product;
|
|
@XmlElement(name = "File", required = true)
|
|
protected FileType file;
|
|
@XmlElement(name = "FileSize")
|
|
protected long fileSize;
|
|
@XmlElement(name = "Frames")
|
|
protected Long frames;
|
|
@XmlElement(name = "Duration")
|
|
protected long duration;
|
|
@XmlElement(name = "MeanFrameRate")
|
|
protected Integer meanFrameRate;
|
|
@XmlElement(name = "Checksums", required = true)
|
|
protected ChecksumsType checksums;
|
|
@XmlElement(name = "AudioTrack")
|
|
protected List<AudioTracksType> audioTrack;
|
|
@XmlElement(name = "VideoTrack")
|
|
protected List<VideoTracksType> videoTrack;
|
|
@XmlElement(name = "SubtitleTrack", required = true)
|
|
protected List<SubtitleTracksType> subtitleTrack;
|
|
@XmlElement(name = "Recording")
|
|
protected RecordingType recording;
|
|
|
|
/**
|
|
* Gets the value of the manufacturer property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getManufacturer() {
|
|
return manufacturer;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the manufacturer property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setManufacturer(String value) {
|
|
this.manufacturer = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the product property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getProduct() {
|
|
return product;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the product property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setProduct(String value) {
|
|
this.product = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the file property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link FileType }
|
|
*
|
|
*/
|
|
public FileType getFile() {
|
|
return file;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the file property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link FileType }
|
|
*
|
|
*/
|
|
public void setFile(FileType value) {
|
|
this.file = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the fileSize property.
|
|
*
|
|
*/
|
|
public long getFileSize() {
|
|
return fileSize;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the fileSize property.
|
|
*
|
|
*/
|
|
public void setFileSize(long value) {
|
|
this.fileSize = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the frames property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link Long }
|
|
*
|
|
*/
|
|
public Long getFrames() {
|
|
return frames;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the frames property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link Long }
|
|
*
|
|
*/
|
|
public void setFrames(Long value) {
|
|
this.frames = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the duration property.
|
|
*
|
|
*/
|
|
public long getDuration() {
|
|
return duration;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the duration property.
|
|
*
|
|
*/
|
|
public void setDuration(long value) {
|
|
this.duration = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the meanFrameRate property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link Integer }
|
|
*
|
|
*/
|
|
public Integer getMeanFrameRate() {
|
|
return meanFrameRate;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the meanFrameRate property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link Integer }
|
|
*
|
|
*/
|
|
public void setMeanFrameRate(Integer value) {
|
|
this.meanFrameRate = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the checksums property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link ChecksumsType }
|
|
*
|
|
*/
|
|
public ChecksumsType getChecksums() {
|
|
return checksums;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the checksums property.
|
|
*
|
|
* @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;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the recording property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link RecordingType }
|
|
*
|
|
*/
|
|
public RecordingType getRecording() {
|
|
return recording;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the recording property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link RecordingType }
|
|
*
|
|
*/
|
|
public void setRecording(RecordingType value) {
|
|
this.recording = value;
|
|
}
|
|
|
|
}
|