// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.06.04 at 04:57:33 AM WEST // package generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Sequence information about a disc * * *
Java class for SequenceType complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="SequenceType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MediaTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="TotalMedia">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <minInclusive value="1"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Side" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <maxInclusive value="2"/>
* <minInclusive value="1"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Layer" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <minInclusive value="0"/>
* <maxInclusive value="1"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SequenceType", propOrder = {
"mediaTitle",
"mediaSequence",
"totalMedia",
"side",
"layer"
})
public class SequenceType {
@XmlElement(name = "MediaTitle")
protected String mediaTitle;
@XmlElement(name = "MediaSequence")
protected int mediaSequence;
@XmlElement(name = "TotalMedia")
protected int totalMedia;
@XmlElement(name = "Side")
protected Integer side;
@XmlElement(name = "Layer")
protected Integer layer;
/**
* Gets the value of the mediaTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMediaTitle() {
return mediaTitle;
}
/**
* Sets the value of the mediaTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMediaTitle(String value) {
this.mediaTitle = value;
}
/**
* Gets the value of the mediaSequence property.
*
*/
public int getMediaSequence() {
return mediaSequence;
}
/**
* Sets the value of the mediaSequence property.
*
*/
public void setMediaSequence(int value) {
this.mediaSequence = value;
}
/**
* Gets the value of the totalMedia property.
*
*/
public int getTotalMedia() {
return totalMedia;
}
/**
* Sets the value of the totalMedia property.
*
*/
public void setTotalMedia(int value) {
this.totalMedia = value;
}
/**
* Gets the value of the side property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSide() {
return side;
}
/**
* Sets the value of the side property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSide(Integer value) {
this.side = value;
}
/**
* Gets the value of the layer property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLayer() {
return layer;
}
/**
* Sets the value of the layer property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLayer(Integer value) {
this.layer = value;
}
}