// // 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: 2016.01.16 at 07:48:01 AM WET // 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; /** *

Java class for CaseType complex type. * *

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

 * <complexType name="CaseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CaseType">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <enumeration value="jewel"/>
 *               <enumeration value="bigjewel"/>
 *               <enumeration value="slimjewel"/>
 *               <enumeration value="sleeve"/>
 *               <enumeration value="qpack"/>
 *               <enumeration value="digisleeve"/>
 *               <enumeration value="discboxslider"/>
 *               <enumeration value="compacplus"/>
 *               <enumeration value="keepcase"/>
 *               <enumeration value="snapcase"/>
 *               <enumeration value="softcase"/>
 *               <enumeration value="ecopack"/>
 *               <enumeration value="liftlock"/>
 *               <enumeration value="spindle"/>
 *               <enumeration value="ps2case"/>
 *               <enumeration value="ps3case"/>
 *               <enumeration value="bluraykeepcase"/>
 *               <enumeration value="pscase"/>
 *               <enumeration value="dccase"/>
 *               <enumeration value="saturncase"/>
 *               <enumeration value="xboxcase"/>
 *               <enumeration value="saturnbigcase"/>
 *               <enumeration value="gccase"/>
 *               <enumeration value="wiicase"/>
 *               <enumeration value="unknown"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="Scans" type="{}ScansType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CaseType", propOrder = { "caseType", "scans" }) public class CaseType { @XmlElement(name = "CaseType", required = true) protected String caseType; @XmlElement(name = "Scans", required = true) protected ScansType scans; /** * Gets the value of the caseType property. * * @return * possible object is * {@link String } * */ public String getCaseType() { return caseType; } /** * Sets the value of the caseType property. * * @param value * allowed object is * {@link String } * */ public void setCaseType(String value) { this.caseType = 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; } }