// // 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 java.util.ArrayList; import java.util.List; 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 StandardBusinessDocumentHeader complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StandardBusinessDocumentHeader"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="HeaderVersion" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Sender" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}Partner" maxOccurs="unbounded"/> * <element name="Receiver" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}Partner" maxOccurs="unbounded"/> * <element name="DocumentIdentification" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}DocumentIdentification"/> * <element name="Manifest" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}Manifest" minOccurs="0"/> * <element name="BusinessScope" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}BusinessScope" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StandardBusinessDocumentHeader", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = { "headerVersion", "sender", "receiver", "documentIdentification", "manifest", "businessScope" }) public class StandardBusinessDocumentHeader { @XmlElement(name = "HeaderVersion", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", required = true) protected String headerVersion; @XmlElement(name = "Sender", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", required = true) protected List<Partner> sender; @XmlElement(name = "Receiver", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", required = true) protected List<Partner> receiver; @XmlElement(name = "DocumentIdentification", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", required = true) protected DocumentIdentification documentIdentification; @XmlElement(name = "Manifest", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") protected Manifest manifest; @XmlElement(name = "BusinessScope", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") protected BusinessScope businessScope; /** * Gets the value of the headerVersion property. * * @return * possible object is * {@link String } * */ public String getHeaderVersion() { return headerVersion; } /** * Sets the value of the headerVersion property. * * @param value * allowed object is * {@link String } * */ public void setHeaderVersion(String value) { this.headerVersion = value; } /** * Gets the value of the sender property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the sender property. * * <p> * For example, to add a new item, do as follows: * <pre> * getSender().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Partner } * * */ public List<Partner> getSender() { if (sender == null) { sender = new ArrayList<Partner>(); } return this.sender; } /** * Gets the value of the receiver property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the receiver property. * * <p> * For example, to add a new item, do as follows: * <pre> * getReceiver().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Partner } * * */ public List<Partner> getReceiver() { if (receiver == null) { receiver = new ArrayList<Partner>(); } return this.receiver; } /** * Gets the value of the documentIdentification property. * * @return * possible object is * {@link DocumentIdentification } * */ public DocumentIdentification getDocumentIdentification() { return documentIdentification; } /** * Sets the value of the documentIdentification property. * * @param value * allowed object is * {@link DocumentIdentification } * */ public void setDocumentIdentification(DocumentIdentification value) { this.documentIdentification = value; } /** * Gets the value of the manifest property. * * @return * possible object is * {@link Manifest } * */ public Manifest getManifest() { return manifest; } /** * Sets the value of the manifest property. * * @param value * allowed object is * {@link Manifest } * */ public void setManifest(Manifest value) { this.manifest = value; } /** * Gets the value of the businessScope property. * * @return * possible object is * {@link BusinessScope } * */ public BusinessScope getBusinessScope() { return businessScope; } /** * Sets the value of the businessScope property. * * @param value * allowed object is * {@link BusinessScope } * */ public void setBusinessScope(BusinessScope value) { this.businessScope = value; } }