summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/persondata/PersonNameType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/persondata/PersonNameType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/persondata/PersonNameType.java146
1 files changed, 146 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/persondata/PersonNameType.java b/src/main/java/at/gv/util/xsd/szr/persondata/PersonNameType.java
new file mode 100644
index 0000000..0914b6b
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr/persondata/PersonNameType.java
@@ -0,0 +1,146 @@
+
+package at.gv.util.xsd.szr.persondata;
+
+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 PersonNameType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="PersonNameType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="PrefixedDegree" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="GivenName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="FamilyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="SuffixedDegree" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "PersonNameType", propOrder = {
+ "prefixedDegree",
+ "givenName",
+ "familyName",
+ "suffixedDegree"
+})
+public class PersonNameType {
+
+ @XmlElement(name = "PrefixedDegree")
+ protected String prefixedDegree;
+ @XmlElement(name = "GivenName", required = true)
+ protected String givenName;
+ @XmlElement(name = "FamilyName", required = true)
+ protected String familyName;
+ @XmlElement(name = "SuffixedDegree")
+ protected String suffixedDegree;
+
+ /**
+ * Gets the value of the prefixedDegree property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPrefixedDegree() {
+ return prefixedDegree;
+ }
+
+ /**
+ * Sets the value of the prefixedDegree property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPrefixedDegree(String value) {
+ this.prefixedDegree = value;
+ }
+
+ /**
+ * Gets the value of the givenName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGivenName() {
+ return givenName;
+ }
+
+ /**
+ * Sets the value of the givenName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGivenName(String value) {
+ this.givenName = value;
+ }
+
+ /**
+ * Gets the value of the familyName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFamilyName() {
+ return familyName;
+ }
+
+ /**
+ * Sets the value of the familyName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFamilyName(String value) {
+ this.familyName = value;
+ }
+
+ /**
+ * Gets the value of the suffixedDegree property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSuffixedDegree() {
+ return suffixedDegree;
+ }
+
+ /**
+ * Sets the value of the suffixedDegree property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSuffixedDegree(String value) {
+ this.suffixedDegree = value;
+ }
+
+}