This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/java/generated/CaseType.java

128 lines
3.7 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: 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;
/**
* <p>Java class for CaseType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="CaseType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="CaseType">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="jewel"/>
* &lt;enumeration value="bigjewel"/>
* &lt;enumeration value="slimjewel"/>
* &lt;enumeration value="sleeve"/>
* &lt;enumeration value="qpack"/>
* &lt;enumeration value="digisleeve"/>
* &lt;enumeration value="discboxslider"/>
* &lt;enumeration value="compacplus"/>
* &lt;enumeration value="keepcase"/>
* &lt;enumeration value="snapcase"/>
* &lt;enumeration value="softcase"/>
* &lt;enumeration value="ecopack"/>
* &lt;enumeration value="liftlock"/>
* &lt;enumeration value="spindle"/>
* &lt;enumeration value="ps2case"/>
* &lt;enumeration value="ps3case"/>
* &lt;enumeration value="bluraykeepcase"/>
* &lt;enumeration value="pscase"/>
* &lt;enumeration value="dccase"/>
* &lt;enumeration value="saturncase"/>
* &lt;enumeration value="xboxcase"/>
* &lt;enumeration value="saturnbigcase"/>
* &lt;enumeration value="gccase"/>
* &lt;enumeration value="wiicase"/>
* &lt;enumeration value="unknown"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/element>
* &lt;element name="Scans" type="{}ScansType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}