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