Projet

Général

Profil

Télécharger (4,16 ko) Statistiques
| Branche: | Tag: | Révision:
package org.fosstrak.epcis.model;

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>
* &lt;complexType name="ManifestItem">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="MimeTypeQualifierCode" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}MimeTypeQualifier"/>
* &lt;element name="UniformResourceIdentifier" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
* &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="LanguageCode" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}Language" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}

}
(46-46/91)