From c039de71dcc66c101a49c854ea1fd16e07bdb425 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Sun, 30 Sep 2018 16:17:33 +0200 Subject: rebuild eID4U JAXB classes --- .../impl/attributes/xjc/eid4u/TranscriptType.java | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/eid4u/TranscriptType.java (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/eid4u/TranscriptType.java') diff --git a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/eid4u/TranscriptType.java b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/eid4u/TranscriptType.java new file mode 100644 index 000000000..beb3ef35f --- /dev/null +++ b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/eid4u/TranscriptType.java @@ -0,0 +1,81 @@ +// +// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0-b170531.0717 generiert +// Siehe https://jaxb.java.net/ +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2018.09.30 um 04:14:23 PM CEST +// + + +package at.gv.egiz.eid4u.impl.attributes.xjc.eid4u; + +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.XmlType; +import at.gv.egiz.eid4u.impl.attributes.xjc.eid4u.generic.Document; + + +/** + * + * Transcript of records as Set of documents + * + * + *

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

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

+ * <complexType name="TranscriptType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{http://eidas.europa.eu/attributes/sectorspecific/eid4u}document" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "TranscriptType", propOrder = { + "document" +}) +public class TranscriptType { + + @XmlElement(namespace = "http://eidas.europa.eu/attributes/sectorspecific/eid4u", required = true) + protected List document; + + /** + * Gets the value of the document 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 document property. + * + *

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

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

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