summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java')
-rw-r--r--src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java113
1 files changed, 19 insertions, 94 deletions
diff --git a/src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java b/src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java
index 2c491c5..c92b80a 100644
--- a/src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java
+++ b/src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java
@@ -1,3 +1,10 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
+// 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: 2014.01.29 at 11:13:18 AM CET
+//
+
package at.gv.util.xsd.stork;
@@ -24,15 +31,12 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="dateOfBirth" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * &lt;element name="fiscalNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;sequence>
* &lt;element name="eLPIdentifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="legalName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="canonicalRegisteredAddress" type="{urn:eu:stork:names:tc:PEPS:1.0:assertion}canonicalAddressType"/>
+ * &lt;element name="adress" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="translatableType" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="LPfiscalNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/choice>
* &lt;/restriction>
@@ -48,13 +52,10 @@ import javax.xml.datatype.XMLGregorianCalendar;
"givenName",
"surname",
"dateOfBirth",
- "fiscalNumber",
"elpIdentifier",
"legalName",
- "canonicalRegisteredAddress",
- "type",
- "translatableType",
- "lPfiscalNumber"
+ "adress",
+ "type"
})
public class RepresentationPerson {
@@ -63,15 +64,11 @@ public class RepresentationPerson {
protected String surname;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dateOfBirth;
- protected String fiscalNumber;
@XmlElement(name = "eLPIdentifier")
protected String elpIdentifier;
protected String legalName;
- protected CanonicalAddressType canonicalRegisteredAddress;
+ protected String adress;
protected String type;
- protected String translatableType;
- @XmlElement(name = "LPfiscalNumber")
- protected String lPfiscalNumber;
/**
* Gets the value of the eIdentifier property.
@@ -170,30 +167,6 @@ public class RepresentationPerson {
}
/**
- * Gets the value of the fiscalNumber property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getFiscalNumber() {
- return fiscalNumber;
- }
-
- /**
- * Sets the value of the fiscalNumber property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setFiscalNumber(String value) {
- this.fiscalNumber = value;
- }
-
- /**
* Gets the value of the elpIdentifier property.
*
* @return
@@ -242,27 +215,27 @@ public class RepresentationPerson {
}
/**
- * Gets the value of the canonicalRegisteredAddress property.
+ * Gets the value of the adress property.
*
* @return
* possible object is
- * {@link CanonicalAddressType }
+ * {@link String }
*
*/
- public CanonicalAddressType getCanonicalRegisteredAddress() {
- return canonicalRegisteredAddress;
+ public String getAdress() {
+ return adress;
}
/**
- * Sets the value of the canonicalRegisteredAddress property.
+ * Sets the value of the adress property.
*
* @param value
* allowed object is
- * {@link CanonicalAddressType }
+ * {@link String }
*
*/
- public void setCanonicalRegisteredAddress(CanonicalAddressType value) {
- this.canonicalRegisteredAddress = value;
+ public void setAdress(String value) {
+ this.adress = value;
}
/**
@@ -289,52 +262,4 @@ public class RepresentationPerson {
this.type = value;
}
- /**
- * Gets the value of the translatableType property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTranslatableType() {
- return translatableType;
- }
-
- /**
- * Sets the value of the translatableType property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTranslatableType(String value) {
- this.translatableType = value;
- }
-
- /**
- * Gets the value of the lPfiscalNumber property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getLPfiscalNumber() {
- return lPfiscalNumber;
- }
-
- /**
- * Sets the value of the lPfiscalNumber property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setLPfiscalNumber(String value) {
- this.lPfiscalNumber = value;
- }
-
}