summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/PersonInfoType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/PersonInfoType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/PersonInfoType.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/PersonInfoType.java b/src/main/java/at/gv/util/xsd/szr/PersonInfoType.java
index 84b7248..44d30c8 100644
--- a/src/main/java/at/gv/util/xsd/szr/PersonInfoType.java
+++ b/src/main/java/at/gv/util/xsd/szr/PersonInfoType.java
@@ -12,9 +12,9 @@ import at.gv.util.xsd.szr.persondata.PostalAddressType;
/**
- * <p>Java class for PersonInfoType complex type.
+ * <p>Java-Klasse für PersonInfoType complex type.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="PersonInfoType">
@@ -50,13 +50,13 @@ public class PersonInfoType {
protected PostalAddressType regularDomicile;
@XmlElement(name = "AddressCodes")
protected AddressCodesType addressCodes;
- @XmlElementRef(name = "TravelDocument", namespace = "urn:SZRServices", type = JAXBElement.class)
+ @XmlElementRef(name = "TravelDocument", namespace = "urn:SZRServices", type = JAXBElement.class, required = false)
protected JAXBElement<TravelDocumentType> travelDocument;
- @XmlElementRef(name = "DateOfBirthWildcard", namespace = "urn:SZRServices", type = JAXBElement.class)
+ @XmlElementRef(name = "DateOfBirthWildcard", namespace = "urn:SZRServices", type = JAXBElement.class, required = false)
protected JAXBElement<Boolean> dateOfBirthWildcard;
/**
- * Gets the value of the person property.
+ * Ruft den Wert der person-Eigenschaft ab.
*
* @return
* possible object is
@@ -68,7 +68,7 @@ public class PersonInfoType {
}
/**
- * Sets the value of the person property.
+ * Legt den Wert der person-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -80,7 +80,7 @@ public class PersonInfoType {
}
/**
- * Gets the value of the regularDomicile property.
+ * Ruft den Wert der regularDomicile-Eigenschaft ab.
*
* @return
* possible object is
@@ -92,7 +92,7 @@ public class PersonInfoType {
}
/**
- * Sets the value of the regularDomicile property.
+ * Legt den Wert der regularDomicile-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -104,7 +104,7 @@ public class PersonInfoType {
}
/**
- * Gets the value of the addressCodes property.
+ * Ruft den Wert der addressCodes-Eigenschaft ab.
*
* @return
* possible object is
@@ -116,7 +116,7 @@ public class PersonInfoType {
}
/**
- * Sets the value of the addressCodes property.
+ * Legt den Wert der addressCodes-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -128,7 +128,7 @@ public class PersonInfoType {
}
/**
- * Gets the value of the travelDocument property.
+ * Ruft den Wert der travelDocument-Eigenschaft ab.
*
* @return
* possible object is
@@ -140,7 +140,7 @@ public class PersonInfoType {
}
/**
- * Sets the value of the travelDocument property.
+ * Legt den Wert der travelDocument-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -148,11 +148,11 @@ public class PersonInfoType {
*
*/
public void setTravelDocument(JAXBElement<TravelDocumentType> value) {
- this.travelDocument = ((JAXBElement<TravelDocumentType> ) value);
+ this.travelDocument = value;
}
/**
- * Gets the value of the dateOfBirthWildcard property.
+ * Ruft den Wert der dateOfBirthWildcard-Eigenschaft ab.
*
* @return
* possible object is
@@ -164,7 +164,7 @@ public class PersonInfoType {
}
/**
- * Sets the value of the dateOfBirthWildcard property.
+ * Legt den Wert der dateOfBirthWildcard-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -172,7 +172,7 @@ public class PersonInfoType {
*
*/
public void setDateOfBirthWildcard(JAXBElement<Boolean> value) {
- this.dateOfBirthWildcard = ((JAXBElement<Boolean> ) value);
+ this.dateOfBirthWildcard = value;
}
}