summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/stork
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/stork')
-rw-r--r--src/main/java/at/gv/util/xsd/stork/CanonicalResidenceAddress.java (renamed from src/main/java/at/gv/util/xsd/stork/CanonicalAddressType.java)17
-rw-r--r--src/main/java/at/gv/util/xsd/stork/MandateContent.java70
-rw-r--r--src/main/java/at/gv/util/xsd/stork/ObjectFactory.java43
-rw-r--r--src/main/java/at/gv/util/xsd/stork/RepresentationPerson.java113
-rw-r--r--src/main/java/at/gv/util/xsd/stork/package-info.java7
5 files changed, 146 insertions, 104 deletions
diff --git a/src/main/java/at/gv/util/xsd/stork/CanonicalAddressType.java b/src/main/java/at/gv/util/xsd/stork/CanonicalResidenceAddress.java
index 23d89ff..58180c3 100644
--- a/src/main/java/at/gv/util/xsd/stork/CanonicalAddressType.java
+++ b/src/main/java/at/gv/util/xsd/stork/CanonicalResidenceAddress.java
@@ -1,19 +1,27 @@
+//
+// 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;
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.XmlType;
/**
- * <p>Java class for canonicalAddressType complex type.
+ * <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
- * &lt;complexType name="canonicalAddressType">
+ * &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
@@ -34,7 +42,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "canonicalAddressType", propOrder = {
+@XmlType(name = "", propOrder = {
"countryCodeAddress",
"state",
"municipalityCode",
@@ -44,7 +52,8 @@ import javax.xml.bind.annotation.XmlType;
"streetNumber",
"apartmentNumber"
})
-public class CanonicalAddressType {
+@XmlRootElement(name = "canonicalResidenceAddress")
+public class CanonicalResidenceAddress {
@XmlElement(required = true)
protected String countryCodeAddress;
diff --git a/src/main/java/at/gv/util/xsd/stork/MandateContent.java b/src/main/java/at/gv/util/xsd/stork/MandateContent.java
index c0eae22..643ccb5 100644
--- a/src/main/java/at/gv/util/xsd/stork/MandateContent.java
+++ b/src/main/java/at/gv/util/xsd/stork/MandateContent.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;
@@ -5,23 +12,26 @@ import java.math.BigInteger;
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.datatype.XMLGregorianCalendar;
/**
- * <p>Java class for mandateContent complex type.
+ * <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
- * &lt;complexType name="mandateContent">
+ * &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="validFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* &lt;element name="validTo" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ * &lt;element name="transactionLimit" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ * &lt;element ref="{urn:eu:stork:names:tc:PEPS:1.0:assertion}transactionLimitCurrency"/>
* &lt;element name="isJoint" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* &lt;element name="isChained" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* &lt;element name="typePower" type="{http://www.w3.org/2001/XMLSchema}integer"/>
@@ -34,19 +44,25 @@ import javax.xml.datatype.XMLGregorianCalendar;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "mandateContent", propOrder = {
+@XmlType(name = "", propOrder = {
"validFrom",
"validTo",
+ "transactionLimit",
+ "transactionLimitCurrency",
"isJoint",
"isChained",
"typePower"
})
+@XmlRootElement(name = "mandateContent")
public class MandateContent {
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar validFrom;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar validTo;
+ protected BigInteger transactionLimit;
+ @XmlElement(required = true)
+ protected Object transactionLimitCurrency;
protected BigInteger isJoint;
protected Boolean isChained;
@XmlElement(required = true)
@@ -101,6 +117,54 @@ public class MandateContent {
}
/**
+ * Gets the value of the transactionLimit property.
+ *
+ * @return
+ * possible object is
+ * {@link BigInteger }
+ *
+ */
+ public BigInteger getTransactionLimit() {
+ return transactionLimit;
+ }
+
+ /**
+ * Sets the value of the transactionLimit property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigInteger }
+ *
+ */
+ public void setTransactionLimit(BigInteger value) {
+ this.transactionLimit = value;
+ }
+
+ /**
+ * Gets the value of the transactionLimitCurrency property.
+ *
+ * @return
+ * possible object is
+ * {@link Object }
+ *
+ */
+ public Object getTransactionLimitCurrency() {
+ return transactionLimitCurrency;
+ }
+
+ /**
+ * Sets the value of the transactionLimitCurrency property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Object }
+ *
+ */
+ public void setTransactionLimitCurrency(Object value) {
+ this.transactionLimitCurrency = value;
+ }
+
+ /**
* Gets the value of the isJoint property.
*
* @return
diff --git a/src/main/java/at/gv/util/xsd/stork/ObjectFactory.java b/src/main/java/at/gv/util/xsd/stork/ObjectFactory.java
index 923299a..c5fdcd9 100644
--- a/src/main/java/at/gv/util/xsd/stork/ObjectFactory.java
+++ b/src/main/java/at/gv/util/xsd/stork/ObjectFactory.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,6 +31,9 @@ import javax.xml.namespace.QName;
@XmlRegistry
public class ObjectFactory {
+ private final static QName _Representative_QNAME = new QName("urn:eu:stork:names:tc:PEPS:1.0:assertion", "representative");
+ private final static QName _Represented_QNAME = new QName("urn:eu:stork:names:tc:PEPS:1.0:assertion", "represented");
+ private final static QName _TransactionLimitCurrency_QNAME = new QName("urn:eu:stork:names:tc:PEPS:1.0:assertion", "transactionLimitCurrency");
private final static QName _CountryCodeAddress_QNAME = new QName("urn:eu:stork:names:tc:PEPS:1.0:assertion", "countryCodeAddress");
/**
@@ -34,6 +44,14 @@ public class ObjectFactory {
}
/**
+ * Create an instance of {@link CanonicalResidenceAddress }
+ *
+ */
+ public CanonicalResidenceAddress createCanonicalResidenceAddress() {
+ return new CanonicalResidenceAddress();
+ }
+
+ /**
* Create an instance of {@link RepresentationPerson }
*
*/
@@ -50,11 +68,30 @@ public class ObjectFactory {
}
/**
- * Create an instance of {@link CanonicalAddressType }
+ * Create an instance of {@link JAXBElement }{@code <}{@link RepresentationPerson }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "urn:eu:stork:names:tc:PEPS:1.0:assertion", name = "representative")
+ public JAXBElement<RepresentationPerson> createRepresentative(RepresentationPerson value) {
+ return new JAXBElement<RepresentationPerson>(_Representative_QNAME, RepresentationPerson.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link RepresentationPerson }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "urn:eu:stork:names:tc:PEPS:1.0:assertion", name = "represented")
+ public JAXBElement<RepresentationPerson> createRepresented(RepresentationPerson value) {
+ return new JAXBElement<RepresentationPerson>(_Represented_QNAME, RepresentationPerson.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}}
*
*/
- public CanonicalAddressType createCanonicalAddressType() {
- return new CanonicalAddressType();
+ @XmlElementDecl(namespace = "urn:eu:stork:names:tc:PEPS:1.0:assertion", name = "transactionLimitCurrency")
+ public JAXBElement<Object> createTransactionLimitCurrency(Object value) {
+ return new JAXBElement<Object>(_TransactionLimitCurrency_QNAME, Object.class, null, value);
}
/**
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;
- }
-
}
diff --git a/src/main/java/at/gv/util/xsd/stork/package-info.java b/src/main/java/at/gv/util/xsd/stork/package-info.java
index 49c23d7..4ae9fd0 100644
--- a/src/main/java/at/gv/util/xsd/stork/package-info.java
+++ b/src/main/java/at/gv/util/xsd/stork/package-info.java
@@ -1,2 +1,9 @@
+//
+// 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
+//
+
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:eu:stork:names:tc:PEPS:1.0:assertion", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package at.gv.util.xsd.stork;