From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../at/gv/util/xsd/mzs/DeliveryStatementType.java | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/mzs/DeliveryStatementType.java (limited to 'src/main/java/at/gv/util/xsd/mzs/DeliveryStatementType.java') diff --git a/src/main/java/at/gv/util/xsd/mzs/DeliveryStatementType.java b/src/main/java/at/gv/util/xsd/mzs/DeliveryStatementType.java new file mode 100644 index 0000000..432e9dc --- /dev/null +++ b/src/main/java/at/gv/util/xsd/mzs/DeliveryStatementType.java @@ -0,0 +1,128 @@ + +package at.gv.util.xsd.mzs; + +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.bind.annotation.adapters.CollapsedStringAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DeliveryStatementType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DeliveryStatementType">
+ *   <complexContent>
+ *     <extension base="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}MessageType">
+ *       <sequence>
+ *         <element name="DeliveryServer" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
+ *         <element name="ZSDeliveryID" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ *         <element name="Timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeliveryStatementType", propOrder = { + "deliveryServer", + "zsDeliveryID", + "timestamp" +}) +public class DeliveryStatementType + extends MessageType +{ + + @XmlElement(name = "DeliveryServer", required = true) + @XmlSchemaType(name = "anyURI") + protected String deliveryServer; + @XmlElement(name = "ZSDeliveryID", required = true) + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlSchemaType(name = "token") + protected String zsDeliveryID; + @XmlElement(name = "Timestamp", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar timestamp; + + /** + * Gets the value of the deliveryServer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeliveryServer() { + return deliveryServer; + } + + /** + * Sets the value of the deliveryServer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeliveryServer(String value) { + this.deliveryServer = value; + } + + /** + * Gets the value of the zsDeliveryID property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getZSDeliveryID() { + return zsDeliveryID; + } + + /** + * Sets the value of the zsDeliveryID property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setZSDeliveryID(String value) { + this.zsDeliveryID = value; + } + + /** + * Gets the value of the timestamp property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTimestamp() { + return timestamp; + } + + /** + * Sets the value of the timestamp property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTimestamp(XMLGregorianCalendar value) { + this.timestamp = value; + } + +} -- cgit v1.2.3