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;
|
|
|
|
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAttribute;
|
|
|
|
|
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 AudioTracksType 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="AudioTracksType">
|
|
|
|
|
* <complexContent>
|
|
|
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
|
|
* <sequence>
|
|
|
|
|
* <element name="Languages" type="{}LanguagesType" minOccurs="0"/>
|
|
|
|
|
* </sequence>
|
|
|
|
|
* <attribute name="TrackNumber" use="required">
|
|
|
|
|
* <simpleType>
|
|
|
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
|
|
|
|
* <minInclusive value="1"/>
|
|
|
|
|
* </restriction>
|
|
|
|
|
* </simpleType>
|
|
|
|
|
* </attribute>
|
|
|
|
|
* <attribute name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" />
|
|
|
|
|
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
|
|
|
|
* <attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
|
|
|
|
* <attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
|
|
|
|
|
* <attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
|
|
|
|
* </restriction>
|
|
|
|
|
* </complexContent>
|
|
|
|
|
* </complexType>
|
2015-11-07 05:28:44 +00:00
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlType(name = "AudioTracksType", propOrder = {
|
|
|
|
|
"languages"
|
|
|
|
|
})
|
|
|
|
|
public class AudioTracksType {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "Languages")
|
|
|
|
|
protected LanguagesType languages;
|
|
|
|
|
@XmlAttribute(name = "TrackNumber", required = true)
|
2019-04-23 00:10:05 +01:00
|
|
|
protected long trackNumber;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlAttribute(name = "AccoustID")
|
|
|
|
|
protected String accoustID;
|
|
|
|
|
@XmlAttribute(name = "Codec", required = true)
|
|
|
|
|
protected String codec;
|
|
|
|
|
@XmlAttribute(name = "Channels", required = true)
|
2019-04-23 00:10:05 +01:00
|
|
|
@XmlSchemaType(name = "unsignedInt")
|
|
|
|
|
protected long channels;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlAttribute(name = "SampleRate", required = true)
|
2019-04-23 00:10:05 +01:00
|
|
|
protected double sampleRate;
|
2015-11-07 05:28:44 +00:00
|
|
|
@XmlAttribute(name = "MeanBitrate", required = true)
|
|
|
|
|
protected long meanBitrate;
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad languages.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link LanguagesType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public LanguagesType getLanguages() {
|
|
|
|
|
return languages;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad languages.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link LanguagesType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setLanguages(LanguagesType value) {
|
|
|
|
|
this.languages = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad trackNumber.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public long getTrackNumber() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return trackNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad trackNumber.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setTrackNumber(long value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.trackNumber = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad accoustID.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getAccoustID() {
|
|
|
|
|
return accoustID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad accoustID.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setAccoustID(String value) {
|
|
|
|
|
this.accoustID = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad codec.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getCodec() {
|
|
|
|
|
return codec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad codec.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setCodec(String value) {
|
|
|
|
|
this.codec = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad channels.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public long getChannels() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return channels;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad channels.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setChannels(long value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.channels = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad sampleRate.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public double getSampleRate() {
|
2015-11-07 05:28:44 +00:00
|
|
|
return sampleRate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad sampleRate.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
2019-04-23 00:10:05 +01:00
|
|
|
public void setSampleRate(double value) {
|
2015-11-07 05:28:44 +00:00
|
|
|
this.sampleRate = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad meanBitrate.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public long getMeanBitrate() {
|
|
|
|
|
return meanBitrate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad meanBitrate.
|
2015-11-07 05:28:44 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setMeanBitrate(long value) {
|
|
|
|
|
this.meanBitrate = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|