// // 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: 2015.11.07 at 05:27:06 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; /** *

Java class for OpticalDiscType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="OpticalDiscType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Image" type="{}ImageType"/>
 *         <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="Sequence" type="{}SequenceType"/>
 *         <element name="Layers" type="{}LayersType" minOccurs="0"/>
 *         <element name="Checksums" type="{}ChecksumsType"/>
 *         <element name="RingCode" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="MasteringSID" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Toolstamp" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="MouldSID" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="MouldText" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DiscType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="DiscSubType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="Tracks" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded"/>
 *         <element name="Sessions" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Dimensions" type="{}DimensionsType"/>
 *         <element name="Case" type="{}CaseType" minOccurs="0"/>
 *         <element name="Scans" type="{}ScansType" minOccurs="0"/>
 *         <element name="PFI" type="{}DumpType" minOccurs="0"/>
 *         <element name="DMI" type="{}DumpType" minOccurs="0"/>
 *         <element name="CMI" type="{}DumpType" minOccurs="0"/>
 *         <element name="BCA" type="{}DumpType" minOccurs="0"/>
 *         <element name="ATIP" type="{}DumpType" minOccurs="0"/>
 *         <element name="PMA" type="{}DumpType" minOccurs="0"/>
 *         <element name="LeadIn" type="{}BorderType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="LeadOut" type="{}BorderType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="XboxSecuritySectors" type="{}XboxSecuritySectorsType" minOccurs="0"/>
 *         <element name="PS3Encryption" type="{}PS3EncryptionType" minOccurs="0"/>
 *         <element name="Track" type="{}TrackType" maxOccurs="unbounded"/>
 *         <element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OpticalDiscType", propOrder = { "image", "size", "sequence", "layers", "checksums", "ringCode", "masteringSID", "toolstamp", "mouldSID", "mouldText", "discType", "discSubType", "offset", "tracks", "sessions", "copyProtection", "dimensions", "_case", "scans", "pfi", "dmi", "cmi", "bca", "atip", "pma", "leadIn", "leadOut", "xboxSecuritySectors", "ps3Encryption", "track", "dumpHardwareArray" }) public class OpticalDiscType { @XmlElement(name = "Image", required = true) protected ImageType image; @XmlElement(name = "Size") protected long size; @XmlElement(name = "Sequence", required = true) protected SequenceType sequence; @XmlElement(name = "Layers") protected LayersType layers; @XmlElement(name = "Checksums", required = true) protected ChecksumsType checksums; @XmlElement(name = "RingCode") protected List ringCode; @XmlElement(name = "MasteringSID") protected List masteringSID; @XmlElement(name = "Toolstamp") protected List toolstamp; @XmlElement(name = "MouldSID") protected List mouldSID; @XmlElement(name = "MouldText") protected List mouldText; @XmlElement(name = "DiscType", required = true) protected String discType; @XmlElement(name = "DiscSubType", required = true) protected String discSubType; @XmlElement(name = "Offset") protected Integer offset; @XmlElement(name = "Tracks", type = Integer.class) protected List tracks; @XmlElement(name = "Sessions") protected int sessions; @XmlElement(name = "CopyProtection") protected String copyProtection; @XmlElement(name = "Dimensions", required = true) protected DimensionsType dimensions; @XmlElement(name = "Case") protected CaseType _case; @XmlElement(name = "Scans") protected ScansType scans; @XmlElement(name = "PFI") protected DumpType pfi; @XmlElement(name = "DMI") protected DumpType dmi; @XmlElement(name = "CMI") protected DumpType cmi; @XmlElement(name = "BCA") protected DumpType bca; @XmlElement(name = "ATIP") protected DumpType atip; @XmlElement(name = "PMA") protected DumpType pma; @XmlElement(name = "LeadIn") protected List leadIn; @XmlElement(name = "LeadOut") protected List leadOut; @XmlElement(name = "XboxSecuritySectors") protected XboxSecuritySectorsType xboxSecuritySectors; @XmlElement(name = "PS3Encryption") protected PS3EncryptionType ps3Encryption; @XmlElement(name = "Track", required = true) protected List track; @XmlElement(name = "DumpHardwareArray") protected DumpHardwareArrayType dumpHardwareArray; /** * Gets the value of the image property. * * @return * possible object is * {@link ImageType } * */ public ImageType getImage() { return image; } /** * Sets the value of the image property. * * @param value * allowed object is * {@link ImageType } * */ public void setImage(ImageType value) { this.image = value; } /** * Gets the value of the size property. * */ public long getSize() { return size; } /** * Sets the value of the size property. * */ public void setSize(long value) { this.size = value; } /** * Gets the value of the sequence property. * * @return * possible object is * {@link SequenceType } * */ public SequenceType getSequence() { return sequence; } /** * Sets the value of the sequence property. * * @param value * allowed object is * {@link SequenceType } * */ public void setSequence(SequenceType value) { this.sequence = value; } /** * Gets the value of the layers property. * * @return * possible object is * {@link LayersType } * */ public LayersType getLayers() { return layers; } /** * Sets the value of the layers property. * * @param value * allowed object is * {@link LayersType } * */ public void setLayers(LayersType value) { this.layers = 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 ringCode property. * *

* 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 set method for the ringCode property. * *

* For example, to add a new item, do as follows: *

     *    getRingCode().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LayeredTextType } * * */ public List getRingCode() { if (ringCode == null) { ringCode = new ArrayList(); } return this.ringCode; } /** * Gets the value of the masteringSID property. * *

* 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 set method for the masteringSID property. * *

* For example, to add a new item, do as follows: *

     *    getMasteringSID().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LayeredTextType } * * */ public List getMasteringSID() { if (masteringSID == null) { masteringSID = new ArrayList(); } return this.masteringSID; } /** * Gets the value of the toolstamp property. * *

* 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 set method for the toolstamp property. * *

* For example, to add a new item, do as follows: *

     *    getToolstamp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LayeredTextType } * * */ public List getToolstamp() { if (toolstamp == null) { toolstamp = new ArrayList(); } return this.toolstamp; } /** * Gets the value of the mouldSID property. * *

* 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 set method for the mouldSID property. * *

* For example, to add a new item, do as follows: *

     *    getMouldSID().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LayeredTextType } * * */ public List getMouldSID() { if (mouldSID == null) { mouldSID = new ArrayList(); } return this.mouldSID; } /** * Gets the value of the mouldText property. * *

* 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 set method for the mouldText property. * *

* For example, to add a new item, do as follows: *

     *    getMouldText().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LayeredTextType } * * */ public List getMouldText() { if (mouldText == null) { mouldText = new ArrayList(); } return this.mouldText; } /** * Gets the value of the discType property. * * @return * possible object is * {@link String } * */ public String getDiscType() { return discType; } /** * Sets the value of the discType property. * * @param value * allowed object is * {@link String } * */ public void setDiscType(String value) { this.discType = value; } /** * Gets the value of the discSubType property. * * @return * possible object is * {@link String } * */ public String getDiscSubType() { return discSubType; } /** * Sets the value of the discSubType property. * * @param value * allowed object is * {@link String } * */ public void setDiscSubType(String value) { this.discSubType = value; } /** * Gets the value of the offset property. * * @return * possible object is * {@link Integer } * */ public Integer getOffset() { return offset; } /** * Sets the value of the offset property. * * @param value * allowed object is * {@link Integer } * */ public void setOffset(Integer value) { this.offset = value; } /** * Gets the value of the tracks property. * *

* 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 set method for the tracks property. * *

* For example, to add a new item, do as follows: *

     *    getTracks().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Integer } * * */ public List getTracks() { if (tracks == null) { tracks = new ArrayList(); } return this.tracks; } /** * Gets the value of the sessions property. * */ public int getSessions() { return sessions; } /** * Sets the value of the sessions property. * */ public void setSessions(int value) { this.sessions = value; } /** * Gets the value of the copyProtection property. * * @return * possible object is * {@link String } * */ public String getCopyProtection() { return copyProtection; } /** * Sets the value of the copyProtection property. * * @param value * allowed object is * {@link String } * */ public void setCopyProtection(String value) { this.copyProtection = value; } /** * Gets the value of the dimensions property. * * @return * possible object is * {@link DimensionsType } * */ public DimensionsType getDimensions() { return dimensions; } /** * Sets the value of the dimensions property. * * @param value * allowed object is * {@link DimensionsType } * */ public void setDimensions(DimensionsType value) { this.dimensions = value; } /** * Gets the value of the case property. * * @return * possible object is * {@link CaseType } * */ public CaseType getCase() { return _case; } /** * Sets the value of the case property. * * @param value * allowed object is * {@link CaseType } * */ public void setCase(CaseType value) { this._case = value; } /** * Gets the value of the scans property. * * @return * possible object is * {@link ScansType } * */ public ScansType getScans() { return scans; } /** * Sets the value of the scans property. * * @param value * allowed object is * {@link ScansType } * */ public void setScans(ScansType value) { this.scans = value; } /** * Gets the value of the pfi property. * * @return * possible object is * {@link DumpType } * */ public DumpType getPFI() { return pfi; } /** * Sets the value of the pfi property. * * @param value * allowed object is * {@link DumpType } * */ public void setPFI(DumpType value) { this.pfi = value; } /** * Gets the value of the dmi property. * * @return * possible object is * {@link DumpType } * */ public DumpType getDMI() { return dmi; } /** * Sets the value of the dmi property. * * @param value * allowed object is * {@link DumpType } * */ public void setDMI(DumpType value) { this.dmi = value; } /** * Gets the value of the cmi property. * * @return * possible object is * {@link DumpType } * */ public DumpType getCMI() { return cmi; } /** * Sets the value of the cmi property. * * @param value * allowed object is * {@link DumpType } * */ public void setCMI(DumpType value) { this.cmi = value; } /** * Gets the value of the bca property. * * @return * possible object is * {@link DumpType } * */ public DumpType getBCA() { return bca; } /** * Sets the value of the bca property. * * @param value * allowed object is * {@link DumpType } * */ public void setBCA(DumpType value) { this.bca = value; } /** * Gets the value of the atip property. * * @return * possible object is * {@link DumpType } * */ public DumpType getATIP() { return atip; } /** * Sets the value of the atip property. * * @param value * allowed object is * {@link DumpType } * */ public void setATIP(DumpType value) { this.atip = value; } /** * Gets the value of the pma property. * * @return * possible object is * {@link DumpType } * */ public DumpType getPMA() { return pma; } /** * Sets the value of the pma property. * * @param value * allowed object is * {@link DumpType } * */ public void setPMA(DumpType value) { this.pma = value; } /** * Gets the value of the leadIn property. * *

* 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 set method for the leadIn property. * *

* For example, to add a new item, do as follows: *

     *    getLeadIn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BorderType } * * */ public List getLeadIn() { if (leadIn == null) { leadIn = new ArrayList(); } return this.leadIn; } /** * Gets the value of the leadOut property. * *

* 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 set method for the leadOut property. * *

* For example, to add a new item, do as follows: *

     *    getLeadOut().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BorderType } * * */ public List getLeadOut() { if (leadOut == null) { leadOut = new ArrayList(); } return this.leadOut; } /** * Gets the value of the xboxSecuritySectors property. * * @return * possible object is * {@link XboxSecuritySectorsType } * */ public XboxSecuritySectorsType getXboxSecuritySectors() { return xboxSecuritySectors; } /** * Sets the value of the xboxSecuritySectors property. * * @param value * allowed object is * {@link XboxSecuritySectorsType } * */ public void setXboxSecuritySectors(XboxSecuritySectorsType value) { this.xboxSecuritySectors = value; } /** * Gets the value of the ps3Encryption property. * * @return * possible object is * {@link PS3EncryptionType } * */ public PS3EncryptionType getPS3Encryption() { return ps3Encryption; } /** * Sets the value of the ps3Encryption property. * * @param value * allowed object is * {@link PS3EncryptionType } * */ public void setPS3Encryption(PS3EncryptionType value) { this.ps3Encryption = value; } /** * Gets the value of the track property. * *

* 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 set method for the track property. * *

* For example, to add a new item, do as follows: *

     *    getTrack().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TrackType } * * */ public List getTrack() { if (track == null) { track = new ArrayList(); } return this.track; } /** * Gets the value of the dumpHardwareArray property. * * @return * possible object is * {@link DumpHardwareArrayType } * */ public DumpHardwareArrayType getDumpHardwareArray() { return dumpHardwareArray; } /** * Sets the value of the dumpHardwareArray property. * * @param value * allowed object is * {@link DumpHardwareArrayType } * */ public void setDumpHardwareArray(DumpHardwareArrayType value) { this.dumpHardwareArray = value; } }