summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/zusespec/PaperNotification.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/zusespec/PaperNotification.java')
-rw-r--r--src/main/java/at/gv/util/xsd/zusespec/PaperNotification.java541
1 files changed, 541 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/zusespec/PaperNotification.java b/src/main/java/at/gv/util/xsd/zusespec/PaperNotification.java
new file mode 100644
index 0000000..5873577
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zusespec/PaperNotification.java
@@ -0,0 +1,541 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
+// 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: 2012.09.18 at 04:10:06 PM MESZ
+//
+
+
+package at.gv.util.xsd.zusespec;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+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;
+import at.gv.util.xsd.zusespec.xmldsig.SignatureType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="Sender">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}Name"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element name="Recipient">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}Name"/>
+ * &lt;element name="AddressLine" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="Municipality" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}DeliveryID"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}DeliveryQuality"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}DeliveryServer"/>
+ * &lt;element name="Dates">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}DueDate"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+ "sender",
+ "recipient",
+ "deliveryID",
+ "deliveryQuality",
+ "deliveryServer",
+ "dates",
+ "signature"
+})
+@XmlRootElement(name = "PaperNotification")
+public class PaperNotification {
+
+ @XmlElement(name = "Sender", required = true)
+ protected PaperNotification.Sender sender;
+ @XmlElement(name = "Recipient", required = true)
+ protected PaperNotification.Recipient recipient;
+ @XmlElement(name = "DeliveryID", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String deliveryID;
+ @XmlElement(name = "DeliveryQuality", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String deliveryQuality;
+ @XmlElement(name = "DeliveryServer", required = true)
+ @XmlSchemaType(name = "anyURI")
+ protected String deliveryServer;
+ @XmlElement(name = "Dates", required = true)
+ protected PaperNotification.Dates dates;
+ @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
+ protected SignatureType signature;
+
+ /**
+ * Gets the value of the sender property.
+ *
+ * @return
+ * possible object is
+ * {@link PaperNotification.Sender }
+ *
+ */
+ public PaperNotification.Sender getSender() {
+ return sender;
+ }
+
+ /**
+ * Sets the value of the sender property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PaperNotification.Sender }
+ *
+ */
+ public void setSender(PaperNotification.Sender value) {
+ this.sender = value;
+ }
+
+ /**
+ * Gets the value of the recipient property.
+ *
+ * @return
+ * possible object is
+ * {@link PaperNotification.Recipient }
+ *
+ */
+ public PaperNotification.Recipient getRecipient() {
+ return recipient;
+ }
+
+ /**
+ * Sets the value of the recipient property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PaperNotification.Recipient }
+ *
+ */
+ public void setRecipient(PaperNotification.Recipient value) {
+ this.recipient = value;
+ }
+
+ /**
+ * Gets the value of the deliveryID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDeliveryID() {
+ return deliveryID;
+ }
+
+ /**
+ * Sets the value of the deliveryID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDeliveryID(String value) {
+ this.deliveryID = value;
+ }
+
+ /**
+ * Gets the value of the deliveryQuality property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDeliveryQuality() {
+ return deliveryQuality;
+ }
+
+ /**
+ * Sets the value of the deliveryQuality property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDeliveryQuality(String value) {
+ this.deliveryQuality = value;
+ }
+
+ /**
+ * 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 dates property.
+ *
+ * @return
+ * possible object is
+ * {@link PaperNotification.Dates }
+ *
+ */
+ public PaperNotification.Dates getDates() {
+ return dates;
+ }
+
+ /**
+ * Sets the value of the dates property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PaperNotification.Dates }
+ *
+ */
+ public void setDates(PaperNotification.Dates value) {
+ this.dates = value;
+ }
+
+ /**
+ * Gets the value of the signature property.
+ *
+ * @return
+ * possible object is
+ * {@link SignatureType }
+ *
+ */
+ public SignatureType getSignature() {
+ return signature;
+ }
+
+ /**
+ * Sets the value of the signature property.
+ *
+ * @param value
+ * allowed object is
+ * {@link SignatureType }
+ *
+ */
+ public void setSignature(SignatureType value) {
+ this.signature = value;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}DueDate"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "dueDate"
+ })
+ public static class Dates {
+
+ @XmlElement(name = "DueDate", required = true)
+ @XmlSchemaType(name = "date")
+ protected XMLGregorianCalendar dueDate;
+
+ /**
+ * Gets the value of the dueDate property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getDueDate() {
+ return dueDate;
+ }
+
+ /**
+ * Sets the value of the dueDate property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setDueDate(XMLGregorianCalendar value) {
+ this.dueDate = value;
+ }
+
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}Name"/>
+ * &lt;element name="AddressLine" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="Municipality" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "name",
+ "addressLine",
+ "postalCode",
+ "municipality"
+ })
+ public static class Recipient {
+
+ @XmlElement(name = "Name", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String name;
+ @XmlElement(name = "AddressLine", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String addressLine;
+ @XmlElement(name = "PostalCode", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String postalCode;
+ @XmlElement(name = "Municipality", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String municipality;
+
+ /**
+ * Gets the value of the name property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setName(String value) {
+ this.name = value;
+ }
+
+ /**
+ * Gets the value of the addressLine property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAddressLine() {
+ return addressLine;
+ }
+
+ /**
+ * Sets the value of the addressLine property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAddressLine(String value) {
+ this.addressLine = value;
+ }
+
+ /**
+ * Gets the value of the postalCode property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPostalCode() {
+ return postalCode;
+ }
+
+ /**
+ * Sets the value of the postalCode property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPostalCode(String value) {
+ this.postalCode = value;
+ }
+
+ /**
+ * Gets the value of the municipality property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMunicipality() {
+ return municipality;
+ }
+
+ /**
+ * Sets the value of the municipality property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMunicipality(String value) {
+ this.municipality = value;
+ }
+
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/zustellung/recipientnotification}Name"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "name"
+ })
+ public static class Sender {
+
+ @XmlElement(name = "Name", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String name;
+
+ /**
+ * Gets the value of the name property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setName(String value) {
+ this.name = value;
+ }
+
+ }
+
+}