diff options
author | Thomas <> | 2021-12-15 08:42:11 +0100 |
---|---|---|
committer | Thomas <> | 2021-12-15 08:42:11 +0100 |
commit | 549e433c60f30a49fd7164967d3afe1a4998930b (patch) | |
tree | 105e698da63fa5e67bd3ff11bdd22d7cf589db5b /moaSig/moa-asic | |
parent | 48de4fce4f95610d877aaf0f4fbec581513f5c3c (diff) | |
download | moa-sig-549e433c60f30a49fd7164967d3afe1a4998930b.tar.gz moa-sig-549e433c60f30a49fd7164967d3afe1a4998930b.tar.bz2 moa-sig-549e433c60f30a49fd7164967d3afe1a4998930b.zip |
switch to JAXB API v3.0
Diffstat (limited to 'moaSig/moa-asic')
35 files changed, 1301 insertions, 1123 deletions
diff --git a/moaSig/moa-asic/build.gradle b/moaSig/moa-asic/build.gradle index 6372373..c228d3d 100644 --- a/moaSig/moa-asic/build.gradle +++ b/moaSig/moa-asic/build.gradle @@ -1,3 +1,7 @@ +//plugins { +// id 'com.intershop.gradle.jaxb' version '5.1.0' +//} + apply plugin: 'java-library-distribution' distributions { @@ -8,16 +12,18 @@ distributions { configurations { jaxb + } dependencies { jaxb group: 'com.sun.xml.bind', name: 'jaxb-xjc', version: '3.0.2' + jaxb group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '3.0.2' implementation project(':common') implementation project(':moa-sig-lib') - implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.15.0' - api group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1' - api group: 'javax.xml.ws', name: 'jaxws-api', version: '2.3.1' + implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.16.0' + api 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1' + api 'jakarta.xml.ws:jakarta.xml.ws-api:3.0.1' } @@ -29,6 +35,21 @@ sourceSets { } } +/* +jaxb { + // generate java code from schema + javaGen { + //generates a 'project' schema file from existing java code + posConfig { + schema = file('src/main/resources/schemas/asic.xsd') + packageName = 'at.gv.egiz.asic' + outputDir = file( "${projectDir}/src/generated/java" ) + } + } + +} +*/ + task jaxb () { // output directory def jaxbTargetDir = file( "${projectDir}/src/generated/java" ) @@ -47,9 +68,10 @@ task jaxb () { package: 'at.gv.egiz.asic', schema: 'src/main/resources/schemas/asic.xsd' ) - } + } } + task releases(type: Copy) { //from jar.outputs from distZip.outputs diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ASiCManifestType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ASiCManifestType.java index 49d8509..5256bcd 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ASiCManifestType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ASiCManifestType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,29 +10,29 @@ package at.gv.egiz.asic; 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 jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for ASiCManifestType complex type. + * <p>Java-Klasse für ASiCManifestType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="ASiCManifestType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://uri.etsi.org/02918/v1.2.1#}SigReference"/> - * <element ref="{http://uri.etsi.org/02918/v1.2.1#}DataObjectReference" maxOccurs="unbounded"/> - * <element name="ASiCManifestExtensions" type="{http://uri.etsi.org/02918/v1.2.1#}ExtensionsListType" minOccurs="0"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ASiCManifestType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://uri.etsi.org/02918/v1.2.1#}SigReference"/> + * <element ref="{http://uri.etsi.org/02918/v1.2.1#}DataObjectReference" maxOccurs="unbounded"/> + * <element name="ASiCManifestExtensions" type="{http://uri.etsi.org/02918/v1.2.1#}ExtensionsListType" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -53,7 +53,7 @@ public class ASiCManifestType { protected ExtensionsListType aSiCManifestExtensions; /** - * Gets the value of the sigReference property. + * Ruft den Wert der sigReference-Eigenschaft ab. * * @return * possible object is @@ -65,7 +65,7 @@ public class ASiCManifestType { } /** - * Sets the value of the sigReference property. + * Legt den Wert der sigReference-Eigenschaft fest. * * @param value * allowed object is @@ -82,7 +82,7 @@ public class ASiCManifestType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the dataObjectReference property. * * <p> @@ -106,7 +106,7 @@ public class ASiCManifestType { } /** - * Gets the value of the aSiCManifestExtensions property. + * Ruft den Wert der aSiCManifestExtensions-Eigenschaft ab. * * @return * possible object is @@ -118,7 +118,7 @@ public class ASiCManifestType { } /** - * Sets the value of the aSiCManifestExtensions property. + * Legt den Wert der aSiCManifestExtensions-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/AnyType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/AnyType.java index 5c96005..b81ea9b 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/AnyType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/AnyType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,30 +10,30 @@ package at.gv.egiz.asic; 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.XmlAnyElement; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSeeAlso; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for AnyType complex type. + * <p>Java-Klasse für AnyType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="AnyType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence maxOccurs="unbounded" minOccurs="0"> - * <any processContents='lax'/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="AnyType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence maxOccurs="unbounded" minOccurs="0"> + * <any processContents='lax'/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -57,7 +57,7 @@ public class AnyType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -69,9 +69,9 @@ public class AnyType { * * <p> * Objects of the following type(s) are allowed in the list + * {@link Object } * {@link String } * {@link Element } - * {@link Object } * * */ diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/CanonicalizationMethodType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/CanonicalizationMethodType.java index 721ba32..e9300cb 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/CanonicalizationMethodType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/CanonicalizationMethodType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,31 +10,31 @@ package at.gv.egiz.asic; 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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for CanonicalizationMethodType complex type. + * <p>Java-Klasse für CanonicalizationMethodType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="CanonicalizationMethodType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <any maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="CanonicalizationMethodType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <any maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -58,7 +58,7 @@ public class CanonicalizationMethodType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -70,8 +70,8 @@ public class CanonicalizationMethodType { * * <p> * Objects of the following type(s) are allowed in the list - * {@link String } * {@link Object } + * {@link String } * * */ @@ -83,7 +83,7 @@ public class CanonicalizationMethodType { } /** - * Gets the value of the algorithm property. + * Ruft den Wert der algorithm-Eigenschaft ab. * * @return * possible object is @@ -95,7 +95,7 @@ public class CanonicalizationMethodType { } /** - * Sets the value of the algorithm property. + * Legt den Wert der algorithm-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DSAKeyValueType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DSAKeyValueType.java index 57c5748..eee51e6 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DSAKeyValueType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DSAKeyValueType.java @@ -1,44 +1,44 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -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 jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for DSAKeyValueType complex type. + * <p>Java-Klasse für DSAKeyValueType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="DSAKeyValueType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <sequence minOccurs="0"> - * <element name="P" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * <element name="Q" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * </sequence> - * <element name="G" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/> - * <element name="Y" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * <element name="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/> - * <sequence minOccurs="0"> - * <element name="Seed" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * <element name="PgenCounter" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * </sequence> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="DSAKeyValueType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <sequence minOccurs="0"> + * <element name="P" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * <element name="Q" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * </sequence> + * <element name="G" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/> + * <element name="Y" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * <element name="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/> + * <sequence minOccurs="0"> + * <element name="Seed" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * <element name="PgenCounter" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * </sequence> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -71,7 +71,7 @@ public class DSAKeyValueType { protected byte[] pgenCounter; /** - * Gets the value of the p property. + * Ruft den Wert der p-Eigenschaft ab. * * @return * possible object is @@ -82,7 +82,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the p property. + * Legt den Wert der p-Eigenschaft fest. * * @param value * allowed object is @@ -93,7 +93,7 @@ public class DSAKeyValueType { } /** - * Gets the value of the q property. + * Ruft den Wert der q-Eigenschaft ab. * * @return * possible object is @@ -104,7 +104,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the q property. + * Legt den Wert der q-Eigenschaft fest. * * @param value * allowed object is @@ -115,7 +115,7 @@ public class DSAKeyValueType { } /** - * Gets the value of the g property. + * Ruft den Wert der g-Eigenschaft ab. * * @return * possible object is @@ -126,7 +126,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the g property. + * Legt den Wert der g-Eigenschaft fest. * * @param value * allowed object is @@ -137,7 +137,7 @@ public class DSAKeyValueType { } /** - * Gets the value of the y property. + * Ruft den Wert der y-Eigenschaft ab. * * @return * possible object is @@ -148,7 +148,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the y property. + * Legt den Wert der y-Eigenschaft fest. * * @param value * allowed object is @@ -159,7 +159,7 @@ public class DSAKeyValueType { } /** - * Gets the value of the j property. + * Ruft den Wert der j-Eigenschaft ab. * * @return * possible object is @@ -170,7 +170,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the j property. + * Legt den Wert der j-Eigenschaft fest. * * @param value * allowed object is @@ -181,7 +181,7 @@ public class DSAKeyValueType { } /** - * Gets the value of the seed property. + * Ruft den Wert der seed-Eigenschaft ab. * * @return * possible object is @@ -192,7 +192,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the seed property. + * Legt den Wert der seed-Eigenschaft fest. * * @param value * allowed object is @@ -203,7 +203,7 @@ public class DSAKeyValueType { } /** - * Gets the value of the pgenCounter property. + * Ruft den Wert der pgenCounter-Eigenschaft ab. * * @return * possible object is @@ -214,7 +214,7 @@ public class DSAKeyValueType { } /** - * Sets the value of the pgenCounter property. + * Legt den Wert der pgenCounter-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DataObjectReferenceType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DataObjectReferenceType.java index f6d0399..e793a4b 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DataObjectReferenceType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DataObjectReferenceType.java @@ -1,41 +1,41 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for DataObjectReferenceType complex type. + * <p>Java-Klasse für DataObjectReferenceType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="DataObjectReferenceType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/> - * <element name="DataObjectReferenceExtensions" type="{http://uri.etsi.org/02918/v1.2.1#}ExtensionsListType" minOccurs="0"/> - * </sequence> - * <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="Rootfile" type="{http://www.w3.org/2001/XMLSchema}boolean" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="DataObjectReferenceType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/> + * <element name="DataObjectReferenceExtensions" type="{http://uri.etsi.org/02918/v1.2.1#}ExtensionsListType" minOccurs="0"/> + * </sequence> + * <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="Rootfile" type="{http://www.w3.org/2001/XMLSchema}boolean" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -63,7 +63,7 @@ public class DataObjectReferenceType { protected Boolean rootfile; /** - * Gets the value of the digestMethod property. + * Ruft den Wert der digestMethod-Eigenschaft ab. * * @return * possible object is @@ -75,7 +75,7 @@ public class DataObjectReferenceType { } /** - * Sets the value of the digestMethod property. + * Legt den Wert der digestMethod-Eigenschaft fest. * * @param value * allowed object is @@ -87,7 +87,7 @@ public class DataObjectReferenceType { } /** - * Gets the value of the digestValue property. + * Ruft den Wert der digestValue-Eigenschaft ab. * * @return * possible object is @@ -98,7 +98,7 @@ public class DataObjectReferenceType { } /** - * Sets the value of the digestValue property. + * Legt den Wert der digestValue-Eigenschaft fest. * * @param value * allowed object is @@ -109,7 +109,7 @@ public class DataObjectReferenceType { } /** - * Gets the value of the dataObjectReferenceExtensions property. + * Ruft den Wert der dataObjectReferenceExtensions-Eigenschaft ab. * * @return * possible object is @@ -121,7 +121,7 @@ public class DataObjectReferenceType { } /** - * Sets the value of the dataObjectReferenceExtensions property. + * Legt den Wert der dataObjectReferenceExtensions-Eigenschaft fest. * * @param value * allowed object is @@ -133,7 +133,7 @@ public class DataObjectReferenceType { } /** - * Gets the value of the uri property. + * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is @@ -145,7 +145,7 @@ public class DataObjectReferenceType { } /** - * Sets the value of the uri property. + * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is @@ -157,7 +157,7 @@ public class DataObjectReferenceType { } /** - * Gets the value of the mimeType property. + * Ruft den Wert der mimeType-Eigenschaft ab. * * @return * possible object is @@ -169,7 +169,7 @@ public class DataObjectReferenceType { } /** - * Sets the value of the mimeType property. + * Legt den Wert der mimeType-Eigenschaft fest. * * @param value * allowed object is @@ -181,7 +181,7 @@ public class DataObjectReferenceType { } /** - * Gets the value of the rootfile property. + * Ruft den Wert der rootfile-Eigenschaft ab. * * @return * possible object is @@ -193,7 +193,7 @@ public class DataObjectReferenceType { } /** - * Sets the value of the rootfile property. + * Legt den Wert der rootfile-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DigestMethodType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DigestMethodType.java index bfa4f8d..a4f0e13 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DigestMethodType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/DigestMethodType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,32 +10,32 @@ package at.gv.egiz.asic; 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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for DigestMethodType complex type. + * <p>Java-Klasse für DigestMethodType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="DigestMethodType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="DigestMethodType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -59,7 +59,7 @@ public class DigestMethodType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -71,9 +71,9 @@ public class DigestMethodType { * * <p> * Objects of the following type(s) are allowed in the list + * {@link Object } * {@link String } * {@link Element } - * {@link Object } * * */ @@ -85,7 +85,7 @@ public class DigestMethodType { } /** - * Gets the value of the algorithm property. + * Ruft den Wert der algorithm-Eigenschaft ab. * * @return * possible object is @@ -97,7 +97,7 @@ public class DigestMethodType { } /** - * Sets the value of the algorithm property. + * Legt den Wert der algorithm-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionType.java index 551dd5f..8046ac4 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionType.java @@ -1,32 +1,32 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for ExtensionType complex type. + * <p>Java-Klasse für ExtensionType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="ExtensionType"> - * <complexContent> - * <extension base="{http://uri.etsi.org/02918/v1.2.1#}AnyType"> - * <attribute name="Critical" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> - * </extension> - * </complexContent> - * </complexType> + * <complexType name="ExtensionType"> + * <complexContent> + * <extension base="{http://uri.etsi.org/02918/v1.2.1#}AnyType"> + * <attribute name="Critical" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> + * </extension> + * </complexContent> + * </complexType> * </pre> * * @@ -41,7 +41,7 @@ public class ExtensionType protected boolean critical; /** - * Gets the value of the critical property. + * Ruft den Wert der critical-Eigenschaft ab. * */ public boolean isCritical() { @@ -49,7 +49,7 @@ public class ExtensionType } /** - * Sets the value of the critical property. + * Legt den Wert der critical-Eigenschaft fest. * */ public void setCritical(boolean value) { diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionsListType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionsListType.java index 8d841fb..63a85d2 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionsListType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ExtensionsListType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,27 +10,27 @@ package at.gv.egiz.asic; 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 jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for ExtensionsListType complex type. + * <p>Java-Klasse für ExtensionsListType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="ExtensionsListType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://uri.etsi.org/02918/v1.2.1#}Extension" maxOccurs="unbounded"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ExtensionsListType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://uri.etsi.org/02918/v1.2.1#}Extension" maxOccurs="unbounded"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -50,7 +50,7 @@ public class ExtensionsListType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the extension property. * * <p> diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyInfoType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyInfoType.java index f750cdd..0036ba5 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyInfoType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyInfoType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,45 +10,45 @@ package at.gv.egiz.asic; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlElementRefs; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.w3c.dom.Element; /** - * <p>Java class for KeyInfoType complex type. + * <p>Java-Klasse für KeyInfoType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="KeyInfoType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <choice maxOccurs="unbounded"> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyName"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyValue"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}RetrievalMethod"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}X509Data"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}PGPData"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}SPKIData"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}MgmtData"/> - * <any processContents='lax' namespace='##other'/> - * </choice> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="KeyInfoType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <choice maxOccurs="unbounded"> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyName"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyValue"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}RetrievalMethod"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}X509Data"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}PGPData"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}SPKIData"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}MgmtData"/> + * <any processContents='lax' namespace='##other'/> + * </choice> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -61,12 +61,12 @@ public class KeyInfoType { @XmlElementRefs({ @XmlElementRef(name = "KeyName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "RetrievalMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "KeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -83,7 +83,7 @@ public class KeyInfoType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -95,16 +95,16 @@ public class KeyInfoType { * * <p> * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} - * {@link String } * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} - * {@link Element } - * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } + * {@link String } + * {@link Element } * * */ @@ -116,7 +116,7 @@ public class KeyInfoType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -128,7 +128,7 @@ public class KeyInfoType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyValueType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyValueType.java index e6fee6f..3f6af21 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyValueType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/KeyValueType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,34 +10,34 @@ package at.gv.egiz.asic; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlElementRefs; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for KeyValueType complex type. + * <p>Java-Klasse für KeyValueType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="KeyValueType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <choice> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}DSAKeyValue"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}RSAKeyValue"/> - * <any processContents='lax' namespace='##other'/> - * </choice> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="KeyValueType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <choice> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}DSAKeyValue"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}RSAKeyValue"/> + * <any processContents='lax' namespace='##other'/> + * </choice> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -49,8 +49,8 @@ import org.w3c.dom.Element; public class KeyValueType { @XmlElementRefs({ - @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "DSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "RSAKeyValue", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlMixed @XmlAnyElement(lax = true) @@ -62,7 +62,7 @@ public class KeyValueType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -74,11 +74,11 @@ public class KeyValueType { * * <p> * Objects of the following type(s) are allowed in the list - * {@link String } - * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} - * {@link Element } + * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * {@link Object } + * {@link String } + * {@link Element } * * */ diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ManifestType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ManifestType.java index 2c14726..9c0b032 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ManifestType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ManifestType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,33 +10,33 @@ package at.gv.egiz.asic; 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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** - * <p>Java class for ManifestType complex type. + * <p>Java-Klasse für ManifestType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="ManifestType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/> - * </sequence> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ManifestType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/> + * </sequence> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -61,7 +61,7 @@ public class ManifestType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the reference property. * * <p> @@ -85,7 +85,7 @@ public class ManifestType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -97,7 +97,7 @@ public class ManifestType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectFactory.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectFactory.java index cc1d90e..9ec231c 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectFactory.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectFactory.java @@ -1,18 +1,18 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; import java.math.BigInteger; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlElementDecl; +import jakarta.xml.bind.annotation.XmlRegistry; /** @@ -32,45 +32,45 @@ import javax.xml.namespace.QName; @XmlRegistry public class ObjectFactory { - private final static QName _SPKIData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKIData"); + private final static QName _ASiCManifest_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "ASiCManifest"); + private final static QName _SigReference_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "SigReference"); private final static QName _DataObjectReference_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "DataObjectReference"); - private final static QName _KeyInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyInfo"); + private final static QName _Extension_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "Extension"); private final static QName _XAdESSignatures_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "XAdESSignatures"); + private final static QName _Signature_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Signature"); private final static QName _SignatureValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureValue"); - private final static QName _ASiCManifest_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "ASiCManifest"); - private final static QName _KeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyValue"); + private final static QName _SignedInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignedInfo"); + private final static QName _CanonicalizationMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "CanonicalizationMethod"); + private final static QName _SignatureMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureMethod"); + private final static QName _Reference_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Reference"); private final static QName _Transforms_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transforms"); + private final static QName _Transform_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transform"); private final static QName _DigestMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestMethod"); - private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); - private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private final static QName _DigestValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestValue"); + private final static QName _KeyInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyInfo"); private final static QName _KeyName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyName"); - private final static QName _RSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RSAKeyValue"); - private final static QName _Signature_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Signature"); private final static QName _MgmtData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "MgmtData"); - private final static QName _Extension_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "Extension"); - private final static QName _SignatureMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureMethod"); + private final static QName _KeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyValue"); + private final static QName _RetrievalMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RetrievalMethod"); + private final static QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); + private final static QName _PGPData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPData"); + private final static QName _SPKIData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKIData"); private final static QName _Object_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Object"); + private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); private final static QName _SignatureProperties_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperties"); - private final static QName _Transform_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transform"); - private final static QName _PGPData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPData"); - private final static QName _Reference_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Reference"); - private final static QName _RetrievalMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RetrievalMethod"); + private final static QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); private final static QName _DSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DSAKeyValue"); - private final static QName _DigestValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestValue"); - private final static QName _CanonicalizationMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "CanonicalizationMethod"); - private final static QName _SigReference_QNAME = new QName("http://uri.etsi.org/02918/v1.2.1#", "SigReference"); - private final static QName _SignedInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignedInfo"); - private final static QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); + private final static QName _RSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RSAKeyValue"); private final static QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); private final static QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); - private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); - private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); + private final static QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); private final static QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); - private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private final static QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); private final static QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); - private final static QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); - private final static QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private final static QName _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.egiz.asic @@ -80,11 +80,11 @@ public class ObjectFactory { } /** - * Create an instance of {@link ExtensionType } + * Create an instance of {@link ASiCManifestType } * */ - public ExtensionType createExtensionType() { - return new ExtensionType(); + public ASiCManifestType createASiCManifestType() { + return new ASiCManifestType(); } /** @@ -96,19 +96,19 @@ public class ObjectFactory { } /** - * Create an instance of {@link ASiCManifestType } + * Create an instance of {@link DataObjectReferenceType } * */ - public ASiCManifestType createASiCManifestType() { - return new ASiCManifestType(); + public DataObjectReferenceType createDataObjectReferenceType() { + return new DataObjectReferenceType(); } /** - * Create an instance of {@link DataObjectReferenceType } + * Create an instance of {@link ExtensionType } * */ - public DataObjectReferenceType createDataObjectReferenceType() { - return new DataObjectReferenceType(); + public ExtensionType createExtensionType() { + return new ExtensionType(); } /** @@ -120,6 +120,14 @@ public class ObjectFactory { } /** + * Create an instance of {@link AnyType } + * + */ + public AnyType createAnyType() { + return new AnyType(); + } + + /** * Create an instance of {@link ExtensionsListType } * */ @@ -128,51 +136,51 @@ public class ObjectFactory { } /** - * Create an instance of {@link AnyType } + * Create an instance of {@link SignatureType } * */ - public AnyType createAnyType() { - return new AnyType(); + public SignatureType createSignatureType() { + return new SignatureType(); } /** - * Create an instance of {@link PGPDataType } + * Create an instance of {@link SignatureValueType } * */ - public PGPDataType createPGPDataType() { - return new PGPDataType(); + public SignatureValueType createSignatureValueType() { + return new SignatureValueType(); } /** - * Create an instance of {@link KeyValueType } + * Create an instance of {@link SignedInfoType } * */ - public KeyValueType createKeyValueType() { - return new KeyValueType(); + public SignedInfoType createSignedInfoType() { + return new SignedInfoType(); } /** - * Create an instance of {@link DSAKeyValueType } + * Create an instance of {@link CanonicalizationMethodType } * */ - public DSAKeyValueType createDSAKeyValueType() { - return new DSAKeyValueType(); + public CanonicalizationMethodType createCanonicalizationMethodType() { + return new CanonicalizationMethodType(); } /** - * Create an instance of {@link ReferenceType } + * Create an instance of {@link SignatureMethodType } * */ - public ReferenceType createReferenceType() { - return new ReferenceType(); + public SignatureMethodType createSignatureMethodType() { + return new SignatureMethodType(); } /** - * Create an instance of {@link RetrievalMethodType } + * Create an instance of {@link ReferenceType } * */ - public RetrievalMethodType createRetrievalMethodType() { - return new RetrievalMethodType(); + public ReferenceType createReferenceType() { + return new ReferenceType(); } /** @@ -184,11 +192,11 @@ public class ObjectFactory { } /** - * Create an instance of {@link CanonicalizationMethodType } + * Create an instance of {@link TransformType } * */ - public CanonicalizationMethodType createCanonicalizationMethodType() { - return new CanonicalizationMethodType(); + public TransformType createTransformType() { + return new TransformType(); } /** @@ -200,43 +208,43 @@ public class ObjectFactory { } /** - * Create an instance of {@link ManifestType } + * Create an instance of {@link KeyInfoType } * */ - public ManifestType createManifestType() { - return new ManifestType(); + public KeyInfoType createKeyInfoType() { + return new KeyInfoType(); } /** - * Create an instance of {@link SignaturePropertyType } + * Create an instance of {@link KeyValueType } * */ - public SignaturePropertyType createSignaturePropertyType() { - return new SignaturePropertyType(); + public KeyValueType createKeyValueType() { + return new KeyValueType(); } /** - * Create an instance of {@link X509DataType } + * Create an instance of {@link RetrievalMethodType } * */ - public X509DataType createX509DataType() { - return new X509DataType(); + public RetrievalMethodType createRetrievalMethodType() { + return new RetrievalMethodType(); } /** - * Create an instance of {@link SignedInfoType } + * Create an instance of {@link X509DataType } * */ - public SignedInfoType createSignedInfoType() { - return new SignedInfoType(); + public X509DataType createX509DataType() { + return new X509DataType(); } /** - * Create an instance of {@link RSAKeyValueType } + * Create an instance of {@link PGPDataType } * */ - public RSAKeyValueType createRSAKeyValueType() { - return new RSAKeyValueType(); + public PGPDataType createPGPDataType() { + return new PGPDataType(); } /** @@ -248,27 +256,19 @@ public class ObjectFactory { } /** - * Create an instance of {@link SignatureValueType } - * - */ - public SignatureValueType createSignatureValueType() { - return new SignatureValueType(); - } - - /** - * Create an instance of {@link KeyInfoType } + * Create an instance of {@link ObjectType } * */ - public KeyInfoType createKeyInfoType() { - return new KeyInfoType(); + public ObjectType createObjectType() { + return new ObjectType(); } /** - * Create an instance of {@link SignatureType } + * Create an instance of {@link ManifestType } * */ - public SignatureType createSignatureType() { - return new SignatureType(); + public ManifestType createManifestType() { + return new ManifestType(); } /** @@ -280,27 +280,27 @@ public class ObjectFactory { } /** - * Create an instance of {@link SignatureMethodType } + * Create an instance of {@link SignaturePropertyType } * */ - public SignatureMethodType createSignatureMethodType() { - return new SignatureMethodType(); + public SignaturePropertyType createSignaturePropertyType() { + return new SignaturePropertyType(); } /** - * Create an instance of {@link ObjectType } + * Create an instance of {@link DSAKeyValueType } * */ - public ObjectType createObjectType() { - return new ObjectType(); + public DSAKeyValueType createDSAKeyValueType() { + return new DSAKeyValueType(); } /** - * Create an instance of {@link TransformType } + * Create an instance of {@link RSAKeyValueType } * */ - public TransformType createTransformType() { - return new TransformType(); + public RSAKeyValueType createRSAKeyValueType() { + return new RSAKeyValueType(); } /** @@ -312,17 +312,38 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link ASiCManifestType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ASiCManifestType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKIData") - public JAXBElement<SPKIDataType> createSPKIData(SPKIDataType value) { - return new JAXBElement<SPKIDataType>(_SPKIData_QNAME, SPKIDataType.class, null, value); + @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "ASiCManifest") + public JAXBElement<ASiCManifestType> createASiCManifest(ASiCManifestType value) { + return new JAXBElement<ASiCManifestType>(_ASiCManifest_QNAME, ASiCManifestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SigReferenceType }{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SigReferenceType }{@code >} + */ + @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "SigReference") + public JAXBElement<SigReferenceType> createSigReference(SigReferenceType value) { + return new JAXBElement<SigReferenceType>(_SigReference_QNAME, SigReferenceType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link DataObjectReferenceType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link DataObjectReferenceType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DataObjectReferenceType }{@code >} */ @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "DataObjectReference") public JAXBElement<DataObjectReferenceType> createDataObjectReference(DataObjectReferenceType value) { @@ -330,17 +351,25 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeyInfoType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link ExtensionType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ExtensionType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyInfo") - public JAXBElement<KeyInfoType> createKeyInfo(KeyInfoType value) { - return new JAXBElement<KeyInfoType>(_KeyInfo_QNAME, KeyInfoType.class, null, value); + @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "Extension") + public JAXBElement<ExtensionType> createExtension(ExtensionType value) { + return new JAXBElement<ExtensionType>(_Extension_QNAME, ExtensionType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link XAdESSignaturesType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link XAdESSignaturesType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link XAdESSignaturesType }{@code >} */ @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "XAdESSignatures") public JAXBElement<XAdESSignaturesType> createXAdESSignatures(XAdESSignaturesType value) { @@ -348,152 +377,220 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignatureValueType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SignatureType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SignatureType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureValue") - public JAXBElement<SignatureValueType> createSignatureValue(SignatureValueType value) { - return new JAXBElement<SignatureValueType>(_SignatureValue_QNAME, SignatureValueType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Signature") + public JAXBElement<SignatureType> createSignature(SignatureType value) { + return new JAXBElement<SignatureType>(_Signature_QNAME, SignatureType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link ASiCManifestType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SignatureValueType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SignatureValueType }{@code >} */ - @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "ASiCManifest") - public JAXBElement<ASiCManifestType> createASiCManifest(ASiCManifestType value) { - return new JAXBElement<ASiCManifestType>(_ASiCManifest_QNAME, ASiCManifestType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureValue") + public JAXBElement<SignatureValueType> createSignatureValue(SignatureValueType value) { + return new JAXBElement<SignatureValueType>(_SignatureValue_QNAME, SignatureValueType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link KeyValueType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SignedInfoType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SignedInfoType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyValue") - public JAXBElement<KeyValueType> createKeyValue(KeyValueType value) { - return new JAXBElement<KeyValueType>(_KeyValue_QNAME, KeyValueType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignedInfo") + public JAXBElement<SignedInfoType> createSignedInfo(SignedInfoType value) { + return new JAXBElement<SignedInfoType>(_SignedInfo_QNAME, SignedInfoType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link TransformsType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link CanonicalizationMethodType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link CanonicalizationMethodType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transforms") - public JAXBElement<TransformsType> createTransforms(TransformsType value) { - return new JAXBElement<TransformsType>(_Transforms_QNAME, TransformsType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "CanonicalizationMethod") + public JAXBElement<CanonicalizationMethodType> createCanonicalizationMethod(CanonicalizationMethodType value) { + return new JAXBElement<CanonicalizationMethodType>(_CanonicalizationMethod_QNAME, CanonicalizationMethodType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link DigestMethodType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SignatureMethodType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SignatureMethodType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestMethod") - public JAXBElement<DigestMethodType> createDigestMethod(DigestMethodType value) { - return new JAXBElement<DigestMethodType>(_DigestMethod_QNAME, DigestMethodType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureMethod") + public JAXBElement<SignatureMethodType> createSignatureMethod(SignatureMethodType value) { + return new JAXBElement<SignatureMethodType>(_SignatureMethod_QNAME, SignatureMethodType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509DataType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link ReferenceType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ReferenceType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Data") - public JAXBElement<X509DataType> createX509Data(X509DataType value) { - return new JAXBElement<X509DataType>(_X509Data_QNAME, X509DataType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Reference") + public JAXBElement<ReferenceType> createReference(ReferenceType value) { + return new JAXBElement<ReferenceType>(_Reference_QNAME, ReferenceType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignaturePropertyType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link TransformsType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link TransformsType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperty") - public JAXBElement<SignaturePropertyType> createSignatureProperty(SignaturePropertyType value) { - return new JAXBElement<SignaturePropertyType>(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transforms") + public JAXBElement<TransformsType> createTransforms(TransformsType value) { + return new JAXBElement<TransformsType>(_Transforms_QNAME, TransformsType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link TransformType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link TransformType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyName") - public JAXBElement<String> createKeyName(String value) { - return new JAXBElement<String>(_KeyName_QNAME, String.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transform") + public JAXBElement<TransformType> createTransform(TransformType value) { + return new JAXBElement<TransformType>(_Transform_QNAME, TransformType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link DigestMethodType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DigestMethodType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RSAKeyValue") - public JAXBElement<RSAKeyValueType> createRSAKeyValue(RSAKeyValueType value) { - return new JAXBElement<RSAKeyValueType>(_RSAKeyValue_QNAME, RSAKeyValueType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestMethod") + public JAXBElement<DigestMethodType> createDigestMethod(DigestMethodType value) { + return new JAXBElement<DigestMethodType>(_DigestMethod_QNAME, DigestMethodType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignatureType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Signature") - public JAXBElement<SignatureType> createSignature(SignatureType value) { - return new JAXBElement<SignatureType>(_Signature_QNAME, SignatureType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestValue") + public JAXBElement<byte[]> createDigestValue(byte[] value) { + return new JAXBElement<byte[]>(_DigestValue_QNAME, byte[].class, null, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link KeyInfoType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link KeyInfoType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "MgmtData") - public JAXBElement<String> createMgmtData(String value) { - return new JAXBElement<String>(_MgmtData_QNAME, String.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyInfo") + public JAXBElement<KeyInfoType> createKeyInfo(KeyInfoType value) { + return new JAXBElement<KeyInfoType>(_KeyInfo_QNAME, KeyInfoType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link ExtensionType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} */ - @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "Extension") - public JAXBElement<ExtensionType> createExtension(ExtensionType value) { - return new JAXBElement<ExtensionType>(_Extension_QNAME, ExtensionType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyName") + public JAXBElement<String> createKeyName(String value) { + return new JAXBElement<String>(_KeyName_QNAME, String.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignatureMethodType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureMethod") - public JAXBElement<SignatureMethodType> createSignatureMethod(SignatureMethodType value) { - return new JAXBElement<SignatureMethodType>(_SignatureMethod_QNAME, SignatureMethodType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "MgmtData") + public JAXBElement<String> createMgmtData(String value) { + return new JAXBElement<String>(_MgmtData_QNAME, String.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link ObjectType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Object") - public JAXBElement<ObjectType> createObject(ObjectType value) { - return new JAXBElement<ObjectType>(_Object_QNAME, ObjectType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyValue") + public JAXBElement<KeyValueType> createKeyValue(KeyValueType value) { + return new JAXBElement<KeyValueType>(_KeyValue_QNAME, KeyValueType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignaturePropertiesType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperties") - public JAXBElement<SignaturePropertiesType> createSignatureProperties(SignaturePropertiesType value) { - return new JAXBElement<SignaturePropertiesType>(_SignatureProperties_QNAME, SignaturePropertiesType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RetrievalMethod") + public JAXBElement<RetrievalMethodType> createRetrievalMethod(RetrievalMethodType value) { + return new JAXBElement<RetrievalMethodType>(_RetrievalMethod_QNAME, RetrievalMethodType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link TransformType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509DataType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link X509DataType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transform") - public JAXBElement<TransformType> createTransform(TransformType value) { - return new JAXBElement<TransformType>(_Transform_QNAME, TransformType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Data") + public JAXBElement<X509DataType> createX509Data(X509DataType value) { + return new JAXBElement<X509DataType>(_X509Data_QNAME, X509DataType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link PGPDataType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link PGPDataType }{@code >} */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPData") public JAXBElement<PGPDataType> createPGPData(PGPDataType value) { @@ -501,80 +598,103 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link ReferenceType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Reference") - public JAXBElement<ReferenceType> createReference(ReferenceType value) { - return new JAXBElement<ReferenceType>(_Reference_QNAME, ReferenceType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RetrievalMethod") - public JAXBElement<RetrievalMethodType> createRetrievalMethod(RetrievalMethodType value) { - return new JAXBElement<RetrievalMethodType>(_RetrievalMethod_QNAME, RetrievalMethodType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKIData") + public JAXBElement<SPKIDataType> createSPKIData(SPKIDataType value) { + return new JAXBElement<SPKIDataType>(_SPKIData_QNAME, SPKIDataType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link ObjectType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ObjectType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DSAKeyValue") - public JAXBElement<DSAKeyValueType> createDSAKeyValue(DSAKeyValueType value) { - return new JAXBElement<DSAKeyValueType>(_DSAKeyValue_QNAME, DSAKeyValueType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Object") + public JAXBElement<ObjectType> createObject(ObjectType value) { + return new JAXBElement<ObjectType>(_Object_QNAME, ObjectType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link ManifestType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link ManifestType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestValue") - public JAXBElement<byte[]> createDigestValue(byte[] value) { - return new JAXBElement<byte[]>(_DigestValue_QNAME, byte[].class, null, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Manifest") + public JAXBElement<ManifestType> createManifest(ManifestType value) { + return new JAXBElement<ManifestType>(_Manifest_QNAME, ManifestType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link CanonicalizationMethodType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SignaturePropertiesType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SignaturePropertiesType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "CanonicalizationMethod") - public JAXBElement<CanonicalizationMethodType> createCanonicalizationMethod(CanonicalizationMethodType value) { - return new JAXBElement<CanonicalizationMethodType>(_CanonicalizationMethod_QNAME, CanonicalizationMethodType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperties") + public JAXBElement<SignaturePropertiesType> createSignatureProperties(SignaturePropertiesType value) { + return new JAXBElement<SignaturePropertiesType>(_SignatureProperties_QNAME, SignaturePropertiesType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SigReferenceType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link SignaturePropertyType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link SignaturePropertyType }{@code >} */ - @XmlElementDecl(namespace = "http://uri.etsi.org/02918/v1.2.1#", name = "SigReference") - public JAXBElement<SigReferenceType> createSigReference(SigReferenceType value) { - return new JAXBElement<SigReferenceType>(_SigReference_QNAME, SigReferenceType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperty") + public JAXBElement<SignaturePropertyType> createSignatureProperty(SignaturePropertyType value) { + return new JAXBElement<SignaturePropertyType>(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link SignedInfoType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignedInfo") - public JAXBElement<SignedInfoType> createSignedInfo(SignedInfoType value) { - return new JAXBElement<SignedInfoType>(_SignedInfo_QNAME, SignedInfoType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DSAKeyValue") + public JAXBElement<DSAKeyValueType> createDSAKeyValue(DSAKeyValueType value) { + return new JAXBElement<DSAKeyValueType>(_DSAKeyValue_QNAME, DSAKeyValueType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link ManifestType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Manifest") - public JAXBElement<ManifestType> createManifest(ManifestType value) { - return new JAXBElement<ManifestType>(_Manifest_QNAME, ManifestType.class, null, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RSAKeyValue") + public JAXBElement<RSAKeyValueType> createRSAKeyValue(RSAKeyValueType value) { + return new JAXBElement<RSAKeyValueType>(_RSAKeyValue_QNAME, RSAKeyValueType.class, null, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) public JAXBElement<byte[]> createSPKIDataTypeSPKISexp(byte[] value) { @@ -582,35 +702,51 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) - public JAXBElement<X509IssuerSerialType> createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement<X509IssuerSerialType>(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) + public JAXBElement<byte[]> createPGPDataTypePGPKeyID(byte[] value) { + return new JAXBElement<byte[]>(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) - public JAXBElement<byte[]> createX509DataTypeX509CRL(byte[] value) { - return new JAXBElement<byte[]>(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) + public JAXBElement<byte[]> createPGPDataTypePGPKeyPacket(byte[] value) { + return new JAXBElement<byte[]>(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) - public JAXBElement<String> createX509DataTypeX509SubjectName(String value) { - return new JAXBElement<String>(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) + public JAXBElement<X509IssuerSerialType> createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { + return new JAXBElement<X509IssuerSerialType>(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) public JAXBElement<byte[]> createX509DataTypeX509SKI(byte[] value) { @@ -618,8 +754,25 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} + */ + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) + public JAXBElement<String> createX509DataTypeX509SubjectName(String value) { + return new JAXBElement<String>(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} + * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) public JAXBElement<byte[]> createX509DataTypeX509Certificate(byte[] value) { @@ -627,17 +780,25 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) - public JAXBElement<BigInteger> createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement<BigInteger>(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) + public JAXBElement<byte[]> createX509DataTypeX509CRL(byte[] value) { + return new JAXBElement<byte[]>(_X509DataTypeX509CRL_QNAME, byte[].class, X509DataType.class, ((byte[]) value)); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link String }{@code >} */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) public JAXBElement<String> createTransformTypeXPath(String value) { @@ -645,21 +806,16 @@ public class ObjectFactory { } /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) - public JAXBElement<byte[]> createPGPDataTypePGPKeyID(byte[] value) { - return new JAXBElement<byte[]>(_PGPDataTypePGPKeyID_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}} + * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * + * @param value + * Java instance representing xml element's value. + * @return + * the new instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >} */ - @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) - public JAXBElement<byte[]> createPGPDataTypePGPKeyPacket(byte[] value) { - return new JAXBElement<byte[]>(_PGPDataTypePGPKeyPacket_QNAME, byte[].class, PGPDataType.class, ((byte[]) value)); + @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) + public JAXBElement<BigInteger> createSignatureMethodTypeHMACOutputLength(BigInteger value) { + return new JAXBElement<BigInteger>(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } } diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectType.java index 813c6d7..6ad2439 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ObjectType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,37 +10,37 @@ package at.gv.egiz.asic; 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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.w3c.dom.Element; /** - * <p>Java class for ObjectType complex type. + * <p>Java-Klasse für ObjectType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="ObjectType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence maxOccurs="unbounded" minOccurs="0"> - * <any processContents='lax'/> - * </sequence> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="Encoding" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ObjectType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence maxOccurs="unbounded" minOccurs="0"> + * <any processContents='lax'/> + * </sequence> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="Encoding" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -71,7 +71,7 @@ public class ObjectType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -83,9 +83,9 @@ public class ObjectType { * * <p> * Objects of the following type(s) are allowed in the list + * {@link Object } * {@link String } * {@link Element } - * {@link Object } * * */ @@ -97,7 +97,7 @@ public class ObjectType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -109,7 +109,7 @@ public class ObjectType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is @@ -121,7 +121,7 @@ public class ObjectType { } /** - * Gets the value of the mimeType property. + * Ruft den Wert der mimeType-Eigenschaft ab. * * @return * possible object is @@ -133,7 +133,7 @@ public class ObjectType { } /** - * Sets the value of the mimeType property. + * Legt den Wert der mimeType-Eigenschaft fest. * * @param value * allowed object is @@ -145,7 +145,7 @@ public class ObjectType { } /** - * Gets the value of the encoding property. + * Ruft den Wert der encoding-Eigenschaft ab. * * @return * possible object is @@ -157,7 +157,7 @@ public class ObjectType { } /** - * Sets the value of the encoding property. + * Legt den Wert der encoding-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/PGPDataType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/PGPDataType.java index 1adcf33..1b62f1c 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/PGPDataType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/PGPDataType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,39 +10,39 @@ package at.gv.egiz.asic; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlElementRefs; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for PGPDataType complex type. + * <p>Java-Klasse für PGPDataType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="PGPDataType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <choice> - * <sequence> - * <element name="PGPKeyID" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> - * <element name="PGPKeyPacket" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> - * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <sequence> - * <element name="PGPKeyPacket" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> - * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * </choice> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="PGPDataType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <choice> + * <sequence> + * <element name="PGPKeyID" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> + * <element name="PGPKeyPacket" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> + * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <sequence> + * <element name="PGPKeyPacket" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> + * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * </choice> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -61,22 +61,22 @@ public class PGPDataType { protected List<Object> content; /** - * Gets the rest of the content model. + * Ruft das restliche Contentmodell ab. * * <p> - * You are getting this "catch-all" property because of the following reason: - * The field name "PGPKeyPacket" is used by two different parts of a schema. See: - * line 218 of http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd - * line 213 of http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd + * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: + * Der Feldname "PGPKeyPacket" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: + * Zeile 218 von http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd + * Zeile 213 von http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd * <p> - * To get rid of this property, apply a property customization to one - * of both of the following declarations to change their names: + * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine + * der beiden folgenden Deklarationen an, um deren Namen zu ändern: * Gets the value of the content property. * * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -89,9 +89,9 @@ public class PGPDataType { * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link Element } * * */ diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RSAKeyValueType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RSAKeyValueType.java index 4b3cc12..0bf28ca 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RSAKeyValueType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RSAKeyValueType.java @@ -1,35 +1,35 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -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 jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for RSAKeyValueType complex type. + * <p>Java-Klasse für RSAKeyValueType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="RSAKeyValueType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="Modulus" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * <element name="Exponent" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="RSAKeyValueType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="Modulus" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * <element name="Exponent" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -47,7 +47,7 @@ public class RSAKeyValueType { protected byte[] exponent; /** - * Gets the value of the modulus property. + * Ruft den Wert der modulus-Eigenschaft ab. * * @return * possible object is @@ -58,7 +58,7 @@ public class RSAKeyValueType { } /** - * Sets the value of the modulus property. + * Legt den Wert der modulus-Eigenschaft fest. * * @param value * allowed object is @@ -69,7 +69,7 @@ public class RSAKeyValueType { } /** - * Gets the value of the exponent property. + * Ruft den Wert der exponent-Eigenschaft ab. * * @return * possible object is @@ -80,7 +80,7 @@ public class RSAKeyValueType { } /** - * Sets the value of the exponent property. + * Legt den Wert der exponent-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ReferenceType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ReferenceType.java index 8d17d19..bd56e8e 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ReferenceType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/ReferenceType.java @@ -1,44 +1,44 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** - * <p>Java class for ReferenceType complex type. + * <p>Java-Klasse für ReferenceType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="ReferenceType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/> - * </sequence> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ReferenceType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/> + * </sequence> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -70,7 +70,7 @@ public class ReferenceType { protected String type; /** - * Gets the value of the transforms property. + * Ruft den Wert der transforms-Eigenschaft ab. * * @return * possible object is @@ -82,7 +82,7 @@ public class ReferenceType { } /** - * Sets the value of the transforms property. + * Legt den Wert der transforms-Eigenschaft fest. * * @param value * allowed object is @@ -94,7 +94,7 @@ public class ReferenceType { } /** - * Gets the value of the digestMethod property. + * Ruft den Wert der digestMethod-Eigenschaft ab. * * @return * possible object is @@ -106,7 +106,7 @@ public class ReferenceType { } /** - * Sets the value of the digestMethod property. + * Legt den Wert der digestMethod-Eigenschaft fest. * * @param value * allowed object is @@ -118,7 +118,7 @@ public class ReferenceType { } /** - * Gets the value of the digestValue property. + * Ruft den Wert der digestValue-Eigenschaft ab. * * @return * possible object is @@ -129,7 +129,7 @@ public class ReferenceType { } /** - * Sets the value of the digestValue property. + * Legt den Wert der digestValue-Eigenschaft fest. * * @param value * allowed object is @@ -140,7 +140,7 @@ public class ReferenceType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -152,7 +152,7 @@ public class ReferenceType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is @@ -164,7 +164,7 @@ public class ReferenceType { } /** - * Gets the value of the uri property. + * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is @@ -176,7 +176,7 @@ public class ReferenceType { } /** - * Sets the value of the uri property. + * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is @@ -188,7 +188,7 @@ public class ReferenceType { } /** - * Gets the value of the type property. + * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is @@ -200,7 +200,7 @@ public class ReferenceType { } /** - * Sets the value of the type property. + * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RetrievalMethodType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RetrievalMethodType.java index 5e61e20..92f5381 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RetrievalMethodType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/RetrievalMethodType.java @@ -1,38 +1,38 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for RetrievalMethodType complex type. + * <p>Java-Klasse für RetrievalMethodType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="RetrievalMethodType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/> - * </sequence> - * <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="RetrievalMethodType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transforms" minOccurs="0"/> + * </sequence> + * <attribute name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -53,7 +53,7 @@ public class RetrievalMethodType { protected String type; /** - * Gets the value of the transforms property. + * Ruft den Wert der transforms-Eigenschaft ab. * * @return * possible object is @@ -65,7 +65,7 @@ public class RetrievalMethodType { } /** - * Sets the value of the transforms property. + * Legt den Wert der transforms-Eigenschaft fest. * * @param value * allowed object is @@ -77,7 +77,7 @@ public class RetrievalMethodType { } /** - * Gets the value of the uri property. + * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is @@ -89,7 +89,7 @@ public class RetrievalMethodType { } /** - * Sets the value of the uri property. + * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is @@ -101,7 +101,7 @@ public class RetrievalMethodType { } /** - * Gets the value of the type property. + * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is @@ -113,7 +113,7 @@ public class RetrievalMethodType { } /** - * Sets the value of the type property. + * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SPKIDataType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SPKIDataType.java index b7b2bf2..7c0db99 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SPKIDataType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SPKIDataType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,31 +10,31 @@ package at.gv.egiz.asic; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for SPKIDataType complex type. + * <p>Java-Klasse für SPKIDataType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SPKIDataType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence maxOccurs="unbounded"> - * <element name="SPKISexp" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> - * <any processContents='lax' namespace='##other' minOccurs="0"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SPKIDataType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence maxOccurs="unbounded"> + * <element name="SPKISexp" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> + * <any processContents='lax' namespace='##other' minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -55,7 +55,7 @@ public class SPKIDataType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the spkiSexpAndAny property. * * <p> @@ -67,9 +67,9 @@ public class SPKIDataType { * * <p> * Objects of the following type(s) are allowed in the list - * {@link Element } * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link Object } + * {@link Element } * * */ diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SigReferenceType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SigReferenceType.java index 6b74429..9ed2105 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SigReferenceType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SigReferenceType.java @@ -1,34 +1,34 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for SigReferenceType complex type. + * <p>Java-Klasse für SigReferenceType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SigReferenceType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SigReferenceType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -44,7 +44,7 @@ public class SigReferenceType { protected String mimeType; /** - * Gets the value of the uri property. + * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is @@ -56,7 +56,7 @@ public class SigReferenceType { } /** - * Sets the value of the uri property. + * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is @@ -68,7 +68,7 @@ public class SigReferenceType { } /** - * Gets the value of the mimeType property. + * Ruft den Wert der mimeType-Eigenschaft ab. * * @return * possible object is @@ -80,7 +80,7 @@ public class SigReferenceType { } /** - * Sets the value of the mimeType property. + * Legt den Wert der mimeType-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureMethodType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureMethodType.java index 41ebe48..1a37a05 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureMethodType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureMethodType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -11,34 +11,34 @@ package at.gv.egiz.asic; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for SignatureMethodType complex type. + * <p>Java-Klasse für SignatureMethodType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SignatureMethodType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="HMACOutputLength" type="{http://www.w3.org/2000/09/xmldsig#}HMACOutputLengthType" minOccurs="0"/> - * <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SignatureMethodType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="HMACOutputLength" type="{http://www.w3.org/2000/09/xmldsig#}HMACOutputLengthType" minOccurs="0"/> + * <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -63,7 +63,7 @@ public class SignatureMethodType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -75,9 +75,9 @@ public class SignatureMethodType { * * <p> * Objects of the following type(s) are allowed in the list - * {@link String } * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } + * {@link String } * * */ @@ -89,7 +89,7 @@ public class SignatureMethodType { } /** - * Gets the value of the algorithm property. + * Ruft den Wert der algorithm-Eigenschaft ab. * * @return * possible object is @@ -101,7 +101,7 @@ public class SignatureMethodType { } /** - * Sets the value of the algorithm property. + * Legt den Wert der algorithm-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertiesType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertiesType.java index 7f0a75d..e811327 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertiesType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertiesType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,33 +10,33 @@ package at.gv.egiz.asic; 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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** - * <p>Java class for SignaturePropertiesType complex type. + * <p>Java-Klasse für SignaturePropertiesType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SignaturePropertiesType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureProperty" maxOccurs="unbounded"/> - * </sequence> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SignaturePropertiesType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureProperty" maxOccurs="unbounded"/> + * </sequence> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -61,7 +61,7 @@ public class SignaturePropertiesType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the signatureProperty property. * * <p> @@ -85,7 +85,7 @@ public class SignaturePropertiesType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -97,7 +97,7 @@ public class SignaturePropertiesType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertyType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertyType.java index ea45e8e..bd2507d 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertyType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignaturePropertyType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,36 +10,36 @@ package at.gv.egiz.asic; 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.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.w3c.dom.Element; /** - * <p>Java class for SignaturePropertyType complex type. + * <p>Java-Klasse für SignaturePropertyType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SignaturePropertyType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <choice maxOccurs="unbounded"> - * <any processContents='lax' namespace='##other'/> - * </choice> - * <attribute name="Target" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SignaturePropertyType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <choice maxOccurs="unbounded"> + * <any processContents='lax' namespace='##other'/> + * </choice> + * <attribute name="Target" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -68,7 +68,7 @@ public class SignaturePropertyType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -80,9 +80,9 @@ public class SignaturePropertyType { * * <p> * Objects of the following type(s) are allowed in the list + * {@link Object } * {@link String } * {@link Element } - * {@link Object } * * */ @@ -94,7 +94,7 @@ public class SignaturePropertyType { } /** - * Gets the value of the target property. + * Ruft den Wert der target-Eigenschaft ab. * * @return * possible object is @@ -106,7 +106,7 @@ public class SignaturePropertyType { } /** - * Sets the value of the target property. + * Legt den Wert der target-Eigenschaft fest. * * @param value * allowed object is @@ -118,7 +118,7 @@ public class SignaturePropertyType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -130,7 +130,7 @@ public class SignaturePropertyType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureType.java index 70dc7b0..7e85412 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,36 +10,36 @@ package at.gv.egiz.asic; 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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** - * <p>Java class for SignatureType complex type. + * <p>Java-Klasse für SignatureType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SignatureType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignedInfo"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureValue"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Object" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SignatureType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignedInfo"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureValue"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Object" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -68,7 +68,7 @@ public class SignatureType { protected String id; /** - * Gets the value of the signedInfo property. + * Ruft den Wert der signedInfo-Eigenschaft ab. * * @return * possible object is @@ -80,7 +80,7 @@ public class SignatureType { } /** - * Sets the value of the signedInfo property. + * Legt den Wert der signedInfo-Eigenschaft fest. * * @param value * allowed object is @@ -92,7 +92,7 @@ public class SignatureType { } /** - * Gets the value of the signatureValue property. + * Ruft den Wert der signatureValue-Eigenschaft ab. * * @return * possible object is @@ -104,7 +104,7 @@ public class SignatureType { } /** - * Sets the value of the signatureValue property. + * Legt den Wert der signatureValue-Eigenschaft fest. * * @param value * allowed object is @@ -116,7 +116,7 @@ public class SignatureType { } /** - * Gets the value of the keyInfo property. + * Ruft den Wert der keyInfo-Eigenschaft ab. * * @return * possible object is @@ -128,7 +128,7 @@ public class SignatureType { } /** - * Sets the value of the keyInfo property. + * Legt den Wert der keyInfo-Eigenschaft fest. * * @param value * allowed object is @@ -145,7 +145,7 @@ public class SignatureType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the object property. * * <p> @@ -169,7 +169,7 @@ public class SignatureType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -181,7 +181,7 @@ public class SignatureType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureValueType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureValueType.java index 8c0350b..e92cce6 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureValueType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignatureValueType.java @@ -1,37 +1,37 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.XmlValue; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** - * <p>Java class for SignatureValueType complex type. + * <p>Java-Klasse für SignatureValueType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SignatureValueType"> - * <simpleContent> - * <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary"> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </extension> - * </simpleContent> - * </complexType> + * <complexType name="SignatureValueType"> + * <simpleContent> + * <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary"> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </extension> + * </simpleContent> + * </complexType> * </pre> * * @@ -51,7 +51,7 @@ public class SignatureValueType { protected String id; /** - * Gets the value of the value property. + * Ruft den Wert der value-Eigenschaft ab. * * @return * possible object is @@ -62,7 +62,7 @@ public class SignatureValueType { } /** - * Sets the value of the value property. + * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is @@ -73,7 +73,7 @@ public class SignatureValueType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -85,7 +85,7 @@ public class SignatureValueType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignedInfoType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignedInfoType.java index ff8f40e..9d0b8c0 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignedInfoType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/SignedInfoType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,35 +10,35 @@ package at.gv.egiz.asic; 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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlID; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; +import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** - * <p>Java class for SignedInfoType complex type. + * <p>Java-Klasse für SignedInfoType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="SignedInfoType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}CanonicalizationMethod"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureMethod"/> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/> - * </sequence> - * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="SignedInfoType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}CanonicalizationMethod"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}SignatureMethod"/> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" maxOccurs="unbounded"/> + * </sequence> + * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -64,7 +64,7 @@ public class SignedInfoType { protected String id; /** - * Gets the value of the canonicalizationMethod property. + * Ruft den Wert der canonicalizationMethod-Eigenschaft ab. * * @return * possible object is @@ -76,7 +76,7 @@ public class SignedInfoType { } /** - * Sets the value of the canonicalizationMethod property. + * Legt den Wert der canonicalizationMethod-Eigenschaft fest. * * @param value * allowed object is @@ -88,7 +88,7 @@ public class SignedInfoType { } /** - * Gets the value of the signatureMethod property. + * Ruft den Wert der signatureMethod-Eigenschaft ab. * * @return * possible object is @@ -100,7 +100,7 @@ public class SignedInfoType { } /** - * Sets the value of the signatureMethod property. + * Legt den Wert der signatureMethod-Eigenschaft fest. * * @param value * allowed object is @@ -117,7 +117,7 @@ public class SignedInfoType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the reference property. * * <p> @@ -141,7 +141,7 @@ public class SignedInfoType { } /** - * Gets the value of the id property. + * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is @@ -153,7 +153,7 @@ public class SignedInfoType { } /** - * Sets the value of the id property. + * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformType.java index 1f2d7c9..1c846b1 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,35 +10,35 @@ package at.gv.egiz.asic; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlMixed; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlMixed; +import jakarta.xml.bind.annotation.XmlSchemaType; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for TransformType complex type. + * <p>Java-Klasse für TransformType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="TransformType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <choice maxOccurs="unbounded" minOccurs="0"> - * <any processContents='lax' namespace='##other'/> - * <element name="XPath" type="{http://www.w3.org/2001/XMLSchema}string"/> - * </choice> - * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="TransformType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <choice maxOccurs="unbounded" minOccurs="0"> + * <any processContents='lax' namespace='##other'/> + * <element name="XPath" type="{http://www.w3.org/2001/XMLSchema}string"/> + * </choice> + * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -63,7 +63,7 @@ public class TransformType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> @@ -75,10 +75,10 @@ public class TransformType { * * <p> * Objects of the following type(s) are allowed in the list - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } + * {@link String } + * {@link Element } * * */ @@ -90,7 +90,7 @@ public class TransformType { } /** - * Gets the value of the algorithm property. + * Ruft den Wert der algorithm-Eigenschaft ab. * * @return * possible object is @@ -102,7 +102,7 @@ public class TransformType { } /** - * Sets the value of the algorithm property. + * Legt den Wert der algorithm-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformsType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformsType.java index 9134229..3be29ad 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformsType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/TransformsType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,27 +10,27 @@ package at.gv.egiz.asic; 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 jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for TransformsType complex type. + * <p>Java-Klasse für TransformsType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="TransformsType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transform" maxOccurs="unbounded"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="TransformsType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Transform" maxOccurs="unbounded"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -50,7 +50,7 @@ public class TransformsType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the transform property. * * <p> diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509DataType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509DataType.java index 3fa1604..d9333c9 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509DataType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509DataType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,38 +10,38 @@ package at.gv.egiz.asic; import java.util.ArrayList; import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAnyElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlElementRefs; -import javax.xml.bind.annotation.XmlType; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAnyElement; +import jakarta.xml.bind.annotation.XmlElementRef; +import jakarta.xml.bind.annotation.XmlElementRefs; +import jakarta.xml.bind.annotation.XmlType; import org.w3c.dom.Element; /** - * <p>Java class for X509DataType complex type. + * <p>Java-Klasse für X509DataType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="X509DataType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence maxOccurs="unbounded"> - * <choice> - * <element name="X509IssuerSerial" type="{http://www.w3.org/2000/09/xmldsig#}X509IssuerSerialType"/> - * <element name="X509SKI" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> - * <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/> - * <element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> - * <element name="X509CRL" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> - * <any processContents='lax' namespace='##other'/> - * </choice> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="X509DataType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence maxOccurs="unbounded"> + * <choice> + * <element name="X509IssuerSerial" type="{http://www.w3.org/2000/09/xmldsig#}X509IssuerSerialType"/> + * <element name="X509SKI" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> + * <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/> + * <element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> + * <element name="X509CRL" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> + * <any processContents='lax' namespace='##other'/> + * </choice> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -53,11 +53,11 @@ import org.w3c.dom.Element; public class X509DataType { @XmlElementRefs({ - @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509SKI", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), + @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "X509Certificate", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509IssuerSerial", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), - @XmlElementRef(name = "X509SubjectName", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) + @XmlElementRef(name = "X509CRL", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List<Object> x509IssuerSerialOrX509SKIOrX509SubjectName; @@ -68,7 +68,7 @@ public class X509DataType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the x509IssuerSerialOrX509SKIOrX509SubjectName property. * * <p> @@ -80,13 +80,13 @@ public class X509DataType { * * <p> * Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * {@link JAXBElement }{@code <}{@link byte[]}{@code >} - * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509IssuerSerialType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509IssuerSerialType.java index f1f7331..7eea404 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509IssuerSerialType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/X509IssuerSerialType.java @@ -1,36 +1,36 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // package at.gv.egiz.asic; 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.XmlType; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for X509IssuerSerialType complex type. + * <p>Java-Klasse für X509IssuerSerialType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="X509IssuerSerialType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/> - * <element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="X509IssuerSerialType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/> + * <element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -48,7 +48,7 @@ public class X509IssuerSerialType { protected BigInteger x509SerialNumber; /** - * Gets the value of the x509IssuerName property. + * Ruft den Wert der x509IssuerName-Eigenschaft ab. * * @return * possible object is @@ -60,7 +60,7 @@ public class X509IssuerSerialType { } /** - * Sets the value of the x509IssuerName property. + * Legt den Wert der x509IssuerName-Eigenschaft fest. * * @param value * allowed object is @@ -72,7 +72,7 @@ public class X509IssuerSerialType { } /** - * Gets the value of the x509SerialNumber property. + * Ruft den Wert der x509SerialNumber-Eigenschaft ab. * * @return * possible object is @@ -84,7 +84,7 @@ public class X509IssuerSerialType { } /** - * Sets the value of the x509SerialNumber property. + * Legt den Wert der x509SerialNumber-Eigenschaft fest. * * @param value * allowed object is diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/XAdESSignaturesType.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/XAdESSignaturesType.java index 00ca792..67e6bb8 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/XAdESSignaturesType.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/XAdESSignaturesType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // @@ -10,27 +10,27 @@ package at.gv.egiz.asic; 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 jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlElement; +import jakarta.xml.bind.annotation.XmlType; /** - * <p>Java class for XAdESSignaturesType complex type. + * <p>Java-Klasse für XAdESSignaturesType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> - * <complexType name="XAdESSignaturesType"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" maxOccurs="unbounded"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="XAdESSignaturesType"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" maxOccurs="unbounded"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> * * @@ -50,7 +50,7 @@ public class XAdESSignaturesType { * <p> * 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. + * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a <CODE>set</CODE> method for the signature property. * * <p> diff --git a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/package-info.java b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/package-info.java index ff68caf..4335528 100644 --- a/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/package-info.java +++ b/moaSig/moa-asic/src/generated/java/at/gv/egiz/asic/package-info.java @@ -1,9 +1,9 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 -// 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: 2016.06.16 at 02:42:50 PM CEST +// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert +// Siehe https://eclipse-ee4j.github.io/jaxb-ri +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2021.12.14 um 08:52:42 PM CET // -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2000/09/xmldsig#", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +@jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/2000/09/xmldsig#", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) package at.gv.egiz.asic; diff --git a/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedCAdESVerifier.java b/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedCAdESVerifier.java index 62ac1c8..df2ffa4 100644 --- a/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedCAdESVerifier.java +++ b/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedCAdESVerifier.java @@ -8,7 +8,7 @@ import java.util.Date; import java.util.Iterator; import java.util.List; -import javax.xml.bind.JAXB; +import jakarta.xml.bind.JAXB; import org.apache.commons.codec.binary.Hex; import org.slf4j.Logger; diff --git a/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedXAdESVerifier.java b/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedXAdESVerifier.java index 565921f..7060d59 100644 --- a/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedXAdESVerifier.java +++ b/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/ExtendedXAdESVerifier.java @@ -10,10 +10,10 @@ import java.util.Iterator; import java.util.List; import java.util.Map; -import javax.xml.bind.JAXB; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.JAXBException; +import jakarta.xml.bind.JAXB; +import jakarta.xml.bind.JAXBContext; +import jakarta.xml.bind.JAXBElement; +import jakarta.xml.bind.JAXBException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; diff --git a/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/SimpleXAdESVerifier.java b/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/SimpleXAdESVerifier.java index bc418e2..09f36f4 100644 --- a/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/SimpleXAdESVerifier.java +++ b/moaSig/moa-asic/src/main/java/at/gv/egiz/asic/impl/verifier/SimpleXAdESVerifier.java @@ -9,7 +9,6 @@ import java.util.Iterator; import java.util.List; import java.util.Map; -import javax.xml.bind.JAXB; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -33,6 +32,7 @@ import at.gv.egovernment.moa.spss.api.xmlverify.VerifySignatureLocation; import at.gv.egovernment.moa.spss.api.xmlverify.VerifyXMLSignatureRequest; import at.gv.egovernment.moa.spss.server.invoke.XMLSignatureVerificationInvoker; import at.gv.egovernment.moaspss.util.URLEncoder; +import jakarta.xml.bind.JAXB; /** * Created by Andreas Fitzek on 6/17/16. |