// // 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.oliot; 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; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for CorrelationInformation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CorrelationInformation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="RequestingDocumentCreationDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="RequestingDocumentInstanceIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ExpectedResponseDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CorrelationInformation", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = { "requestingDocumentCreationDateTime", "requestingDocumentInstanceIdentifier", "expectedResponseDateTime" }) public class CorrelationInformation { @XmlElement(name = "RequestingDocumentCreationDateTime", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar requestingDocumentCreationDateTime; @XmlElement(name = "RequestingDocumentInstanceIdentifier", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") protected String requestingDocumentInstanceIdentifier; @XmlElement(name = "ExpectedResponseDateTime", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expectedResponseDateTime; /** * Gets the value of the requestingDocumentCreationDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRequestingDocumentCreationDateTime() { return requestingDocumentCreationDateTime; } /** * Sets the value of the requestingDocumentCreationDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRequestingDocumentCreationDateTime(XMLGregorianCalendar value) { this.requestingDocumentCreationDateTime = value; } /** * Gets the value of the requestingDocumentInstanceIdentifier property. * * @return * possible object is * {@link String } * */ public String getRequestingDocumentInstanceIdentifier() { return requestingDocumentInstanceIdentifier; } /** * Sets the value of the requestingDocumentInstanceIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setRequestingDocumentInstanceIdentifier(String value) { this.requestingDocumentInstanceIdentifier = value; } /** * Gets the value of the expectedResponseDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpectedResponseDateTime() { return expectedResponseDateTime; } /** * Sets the value of the expectedResponseDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpectedResponseDateTime(XMLGregorianCalendar value) { this.expectedResponseDateTime = value; } }