summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/stork/ObjectFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/stork/ObjectFactory.java')
-rw-r--r--src/main/java/at/gv/util/xsd/stork/ObjectFactory.java43
1 files changed, 40 insertions, 3 deletions
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);
}
/**