// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2014.09.15 at 01:39:48 PM KST // package org.oliot.model.epcis; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ManifestItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ManifestItem"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="MimeTypeQualifierCode" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}MimeTypeQualifier"/> * <element name="UniformResourceIdentifier" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="LanguageCode" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}Language" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ManifestItem", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = { "mimeTypeQualifierCode", "uniformResourceIdentifier", "description", "languageCode" }) public class ManifestItem { @XmlElement(name = "MimeTypeQualifierCode", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", required = true) protected String mimeTypeQualifierCode; @XmlElement(name = "UniformResourceIdentifier", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", required = true) @XmlSchemaType(name = "anyURI") protected String uniformResourceIdentifier; @XmlElement(name = "Description", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") protected String description; @XmlElement(name = "LanguageCode", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") protected String languageCode; /** * Gets the value of the mimeTypeQualifierCode property. * * @return * possible object is * {@link String } * */ public String getMimeTypeQualifierCode() { return mimeTypeQualifierCode; } /** * Sets the value of the mimeTypeQualifierCode property. * * @param value * allowed object is * {@link String } * */ public void setMimeTypeQualifierCode(String value) { this.mimeTypeQualifierCode = value; } /** * Gets the value of the uniformResourceIdentifier property. * * @return * possible object is * {@link String } * */ public String getUniformResourceIdentifier() { return uniformResourceIdentifier; } /** * Sets the value of the uniformResourceIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setUniformResourceIdentifier(String value) { this.uniformResourceIdentifier = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the languageCode property. * * @return * possible object is * {@link String } * */ public String getLanguageCode() { return languageCode; } /** * Sets the value of the languageCode property. * * @param value * allowed object is * {@link String } * */ public void setLanguageCode(String value) { this.languageCode = value; } }