summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/TravelDocumentType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/TravelDocumentType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/TravelDocumentType.java174
1 files changed, 174 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/TravelDocumentType.java b/src/main/java/at/gv/util/xsd/szr/TravelDocumentType.java
new file mode 100644
index 0000000..6df406b
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr/TravelDocumentType.java
@@ -0,0 +1,174 @@
+
+package at.gv.util.xsd.szr;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for TravelDocumentType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="TravelDocumentType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="DocumentNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="DocumentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="IssueDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="IssuingAuthority" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="IssuingCountry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "TravelDocumentType", propOrder = {
+ "documentNumber",
+ "documentType",
+ "issueDate",
+ "issuingAuthority",
+ "issuingCountry"
+})
+public class TravelDocumentType {
+
+ @XmlElement(name = "DocumentNumber")
+ protected String documentNumber;
+ @XmlElement(name = "DocumentType")
+ protected String documentType;
+ @XmlElement(name = "IssueDate")
+ protected String issueDate;
+ @XmlElement(name = "IssuingAuthority")
+ protected String issuingAuthority;
+ @XmlElement(name = "IssuingCountry")
+ protected String issuingCountry;
+
+ /**
+ * Gets the value of the documentNumber property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDocumentNumber() {
+ return documentNumber;
+ }
+
+ /**
+ * Sets the value of the documentNumber property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDocumentNumber(String value) {
+ this.documentNumber = value;
+ }
+
+ /**
+ * Gets the value of the documentType property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDocumentType() {
+ return documentType;
+ }
+
+ /**
+ * Sets the value of the documentType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDocumentType(String value) {
+ this.documentType = value;
+ }
+
+ /**
+ * Gets the value of the issueDate property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIssueDate() {
+ return issueDate;
+ }
+
+ /**
+ * Sets the value of the issueDate property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIssueDate(String value) {
+ this.issueDate = value;
+ }
+
+ /**
+ * Gets the value of the issuingAuthority property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIssuingAuthority() {
+ return issuingAuthority;
+ }
+
+ /**
+ * Sets the value of the issuingAuthority property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIssuingAuthority(String value) {
+ this.issuingAuthority = value;
+ }
+
+ /**
+ * Gets the value of the issuingCountry property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getIssuingCountry() {
+ return issuingCountry;
+ }
+
+ /**
+ * Sets the value of the issuingCountry property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIssuingCountry(String value) {
+ this.issuingCountry = value;
+ }
+
+}