// // 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: 2016.10.10 at 02:39:29 PM KST // package org.oliot.model.epcis; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** * <p> * Java class for StandardBusinessDocument complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="StandardBusinessDocument"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}StandardBusinessDocumentHeader" minOccurs="0"/> * <any processContents='lax' namespace='##other'/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StandardBusinessDocument", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = { "standardBusinessDocumentHeader", "any" }) public class StandardBusinessDocument { @XmlElement(name = "StandardBusinessDocumentHeader", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") protected StandardBusinessDocumentHeader standardBusinessDocumentHeader; @XmlAnyElement(lax = true) protected Object any; /** * Gets the value of the standardBusinessDocumentHeader property. * * @return possible object is {@link StandardBusinessDocumentHeader } * */ public StandardBusinessDocumentHeader getStandardBusinessDocumentHeader() { return standardBusinessDocumentHeader; } /** * Sets the value of the standardBusinessDocumentHeader property. * * @param value * allowed object is {@link StandardBusinessDocumentHeader } * */ public void setStandardBusinessDocumentHeader(StandardBusinessDocumentHeader value) { this.standardBusinessDocumentHeader = value; } /** * Gets the value of the any property. * * @return possible object is {@link Object } {@link Element } * */ public Object getAny() { return any; } /** * Sets the value of the any property. * * @param value * allowed object is {@link Object } {@link Element } * */ public void setAny(Object value) { this.any = value; } }