Projet

Général

Profil

Télécharger (3,98 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;
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>
* &lt;complexType name="CorrelationInformation">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="RequestingDocumentCreationDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;element name="RequestingDocumentInstanceIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ExpectedResponseDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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;
}

}
(13-13/91)