From f7c97e3423fa51f9f3d32f0285f2468d95d5987d Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 23 Jan 2020 13:47:25 +0100 Subject: add first version of SZR client v4.0 --- .../xsd/szr_v4/GetBPKFromStammzahlEncrypted.java | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/szr_v4/GetBPKFromStammzahlEncrypted.java (limited to 'src/main/java/at/gv/util/xsd/szr_v4/GetBPKFromStammzahlEncrypted.java') diff --git a/src/main/java/at/gv/util/xsd/szr_v4/GetBPKFromStammzahlEncrypted.java b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKFromStammzahlEncrypted.java new file mode 100644 index 0000000..be32e99 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKFromStammzahlEncrypted.java @@ -0,0 +1,71 @@ + +package at.gv.util.xsd.szr_v4; + +import java.util.ArrayList; +import java.util.List; +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; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="In" type="{urn:SZRServices}GetBPKFromStammzahlEncryptedRequestType" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "in" +}) +@XmlRootElement(name = "GetBPKFromStammzahlEncrypted") +public class GetBPKFromStammzahlEncrypted { + + @XmlElement(name = "In", required = true) + protected List in; + + /** + * Gets the value of the in property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the in property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getIn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GetBPKFromStammzahlEncryptedRequestType } + * + * + */ + public List getIn() { + if (in == null) { + in = new ArrayList(); + } + return this.in; + } + +} -- cgit v1.2.3