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/BarcodeType.java

130 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: 2015.12.31 at 05:27:48 PM WET
//
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.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* <p>Java class for BarcodeType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="BarcodeType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="type" use="required">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="aztec"/>
* &lt;enumeration value="codabar"/>
* &lt;enumeration value="code11"/>
* &lt;enumeration value="code128"/>
* &lt;enumeration value="code39"/>
* &lt;enumeration value="code93"/>
* &lt;enumeration value="cpcbinary"/>
* &lt;enumeration value="ezcode"/>
* &lt;enumeration value="fim"/>
* &lt;enumeration value="itf"/>
* &lt;enumeration value="itf14"/>
* &lt;enumeration value="ean13"/>
* &lt;enumeration value="ean8"/>
* &lt;enumeration value="maxicode"/>
* &lt;enumeration value="isbn"/>
* &lt;enumeration value="isrc"/>
* &lt;enumeration value="msi"/>
* &lt;enumeration value="tof"/>
* &lt;enumeration value="shotcode"/>
* &lt;enumeration value="rm4scc"/>
* &lt;enumeration value="qr"/>
* &lt;enumeration value="ean5"/>
* &lt;enumeration value="ean2"/>
* &lt;enumeration value="qr"/>
* &lt;enumeration value="postnet"/>
* &lt;enumeration value="postbar"/>
* &lt;enumeration value="plessey"/>
* &lt;enumeration value="pharmacode"/>
* &lt;enumeration value="pdf417"/>
* &lt;enumeration value="patchcode"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BarcodeType", propOrder = {
"value"
})
public class BarcodeType {
@XmlValue
protected String value;
@XmlAttribute(name = "type", required = true)
protected String type;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}