From 77dd3fcc4d85088b15ab859c4438521d9cd6ed10 Mon Sep 17 00:00:00 2001 From: Jakob Heher Date: Wed, 15 Apr 2026 13:49:22 +0200 Subject: pdf-as-5 (#82) - JDK 17 - PDFBox 3 - PDF-AS Web moved to Spring Boot - MOA Integration tests w/ new error code --------- Co-authored-by: Gerald Palfinger Co-authored-by: kathrin.resek --- .../_09/xmldsig_/CanonicalizationMethodType.java | 59 ++++--- .../org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java | 82 ++++----- .../w3/_2000/_09/xmldsig_/DigestMethodType.java | 59 ++++--- .../org/w3/_2000/_09/xmldsig_/KeyInfoType.java | 89 +++++----- .../org/w3/_2000/_09/xmldsig_/KeyValueType.java | 63 +++---- .../org/w3/_2000/_09/xmldsig_/ManifestType.java | 63 +++---- .../org/w3/_2000/_09/xmldsig_/ObjectFactory.java | 188 +++++++++++++-------- .../java/org/w3/_2000/_09/xmldsig_/ObjectType.java | 77 +++++---- .../org/w3/_2000/_09/xmldsig_/PGPDataType.java | 99 ++++++----- .../org/w3/_2000/_09/xmldsig_/RSAKeyValueType.java | 44 ++--- .../org/w3/_2000/_09/xmldsig_/ReferenceType.java | 78 ++++----- .../w3/_2000/_09/xmldsig_/RetrievalMethodType.java | 54 +++--- .../org/w3/_2000/_09/xmldsig_/SPKIDataType.java | 55 +++--- .../w3/_2000/_09/xmldsig_/SignatureMethodType.java | 67 ++++---- .../_09/xmldsig_/SignaturePropertiesType.java | 63 +++---- .../_2000/_09/xmldsig_/SignaturePropertyType.java | 71 ++++---- .../org/w3/_2000/_09/xmldsig_/SignatureType.java | 81 ++++----- .../w3/_2000/_09/xmldsig_/SignatureValueType.java | 48 +++--- .../org/w3/_2000/_09/xmldsig_/SignedInfoType.java | 75 ++++---- .../org/w3/_2000/_09/xmldsig_/TransformType.java | 67 ++++---- .../org/w3/_2000/_09/xmldsig_/TransformsType.java | 47 +++--- .../org/w3/_2000/_09/xmldsig_/X509DataType.java | 69 ++++---- .../_2000/_09/xmldsig_/X509IssuerSerialType.java | 44 ++--- .../org/w3/_2000/_09/xmldsig_/package-info.java | 2 +- 24 files changed, 875 insertions(+), 769 deletions(-) (limited to 'pdf-as-moa/src/generated/java/org') diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java index 9ac3752e..e3f5ea1b 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java @@ -3,32 +3,32 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for CanonicalizationMethodType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -48,16 +48,16 @@ public class CanonicalizationMethodType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * @@ -65,18 +65,21 @@ public class CanonicalizationMethodType { * Objects of the following type(s) are allowed in the list * {@link Object } * {@link String } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der algorithm-Eigenschaft ab. + * Gets the value of the algorithm property. * * @return * possible object is @@ -88,7 +91,7 @@ public class CanonicalizationMethodType { } /** - * Legt den Wert der algorithm-Eigenschaft fest. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java index d0654919..03d07147 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java @@ -1,38 +1,38 @@ package org.w3._2000._09.xmldsig_; -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; /** - *

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

Java class for DSAKeyValueType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
- *         <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"/>
- *         <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *           
+ *           
+ *         
+ *         
+ *         
+ *         
+ *         
+ *           
+ *           
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -64,7 +64,7 @@ public class DSAKeyValueType { protected String pgenCounter; /** - * Ruft den Wert der p-Eigenschaft ab. + * Gets the value of the p property. * * @return * possible object is @@ -76,7 +76,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der p-Eigenschaft fest. + * Sets the value of the p property. * * @param value * allowed object is @@ -88,7 +88,7 @@ public class DSAKeyValueType { } /** - * Ruft den Wert der q-Eigenschaft ab. + * Gets the value of the q property. * * @return * possible object is @@ -100,7 +100,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der q-Eigenschaft fest. + * Sets the value of the q property. * * @param value * allowed object is @@ -112,7 +112,7 @@ public class DSAKeyValueType { } /** - * Ruft den Wert der j-Eigenschaft ab. + * Gets the value of the j property. * * @return * possible object is @@ -124,7 +124,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der j-Eigenschaft fest. + * Sets the value of the j property. * * @param value * allowed object is @@ -136,7 +136,7 @@ public class DSAKeyValueType { } /** - * Ruft den Wert der g-Eigenschaft ab. + * Gets the value of the g property. * * @return * possible object is @@ -148,7 +148,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der g-Eigenschaft fest. + * Sets the value of the g property. * * @param value * allowed object is @@ -160,7 +160,7 @@ public class DSAKeyValueType { } /** - * Ruft den Wert der y-Eigenschaft ab. + * Gets the value of the y property. * * @return * possible object is @@ -172,7 +172,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der y-Eigenschaft fest. + * Sets the value of the y property. * * @param value * allowed object is @@ -184,7 +184,7 @@ public class DSAKeyValueType { } /** - * Ruft den Wert der seed-Eigenschaft ab. + * Gets the value of the seed property. * * @return * possible object is @@ -196,7 +196,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der seed-Eigenschaft fest. + * Sets the value of the seed property. * * @param value * allowed object is @@ -208,7 +208,7 @@ public class DSAKeyValueType { } /** - * Ruft den Wert der pgenCounter-Eigenschaft ab. + * Gets the value of the pgenCounter property. * * @return * possible object is @@ -220,7 +220,7 @@ public class DSAKeyValueType { } /** - * Legt den Wert der pgenCounter-Eigenschaft fest. + * Sets the value of the pgenCounter property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java index 6d06d201..1f0297fb 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java @@ -3,33 +3,33 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for DigestMethodType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -49,16 +49,16 @@ public class DigestMethodType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * @@ -67,18 +67,21 @@ public class DigestMethodType { * {@link Object } * {@link String } * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der algorithm-Eigenschaft ab. + * Gets the value of the algorithm property. * * @return * possible object is @@ -90,7 +93,7 @@ public class DigestMethodType { } /** - * Legt den Wert der algorithm-Eigenschaft fest. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java index b89025eb..f99460c0 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java @@ -3,46 +3,46 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for KeyInfoType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *         
+ *         
+ *         
+ *         
+ *         
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -73,23 +73,21 @@ public class KeyInfoType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >} @@ -97,19 +95,24 @@ public class KeyInfoType { * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >} * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >} * {@link JAXBElement }{@code <}{@link X509DataType }{@code >} + * {@link Object } + * {@link String } * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -121,7 +124,7 @@ public class KeyInfoType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java index b7c4b943..205093e6 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java @@ -3,35 +3,35 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for KeyValueType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -52,32 +52,35 @@ public class KeyValueType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list - * {@link Object } - * {@link String } * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >} * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >} + * {@link Object } + * {@link String } * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ManifestType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ManifestType.java index 6e9c4303..ada8be59 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ManifestType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ManifestType.java @@ -3,34 +3,34 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for ManifestType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -51,34 +51,37 @@ public class ManifestType { /** * Gets the value of the reference property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getReference().add(newItem);
+     * getReference().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReferenceType } + *

* * + * @return + * The value of the reference property. */ public List getReference() { if (reference == null) { - reference = new ArrayList(); + reference = new ArrayList<>(); } return this.reference; } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -90,7 +93,7 @@ public class ManifestType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectFactory.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectFactory.java index f30be5f9..d3aa8b06 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectFactory.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectFactory.java @@ -2,17 +2,17 @@ package org.w3._2000._09.xmldsig_; 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; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the org.w3._2000._09.xmldsig_ package. - *

An ObjectFactory allows you to programatically + *

An ObjectFactory allows you to programmatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces @@ -25,40 +25,40 @@ import javax.xml.namespace.QName; @XmlRegistry public class ObjectFactory { - 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 _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 _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 _MgmtData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "MgmtData"); - 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 _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 _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 _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 _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 _SignatureMethodTypeHMACOutputLength_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "HMACOutputLength"); + private static final QName _Signature_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Signature"); + private static final QName _SignatureValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureValue"); + private static final QName _SignedInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignedInfo"); + private static final QName _CanonicalizationMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "CanonicalizationMethod"); + private static final QName _SignatureMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureMethod"); + private static final QName _Reference_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Reference"); + private static final QName _Transforms_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transforms"); + private static final QName _Transform_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Transform"); + private static final QName _DigestMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestMethod"); + private static final QName _DigestValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DigestValue"); + private static final QName _KeyInfo_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyInfo"); + private static final QName _KeyName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyName"); + private static final QName _MgmtData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "MgmtData"); + private static final QName _KeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "KeyValue"); + private static final QName _RetrievalMethod_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RetrievalMethod"); + private static final QName _X509Data_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Data"); + private static final QName _PGPData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPData"); + private static final QName _SPKIData_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKIData"); + private static final QName _Object_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Object"); + private static final QName _Manifest_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Manifest"); + private static final QName _SignatureProperties_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperties"); + private static final QName _SignatureProperty_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SignatureProperty"); + private static final QName _DSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "DSAKeyValue"); + private static final QName _RSAKeyValue_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "RSAKeyValue"); + private static final QName _SPKIDataTypeSPKISexp_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "SPKISexp"); + private static final QName _PGPDataTypePGPKeyID_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyID"); + private static final QName _PGPDataTypePGPKeyPacket_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "PGPKeyPacket"); + private static final QName _X509DataTypeX509IssuerSerial_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509IssuerSerial"); + private static final QName _X509DataTypeX509SKI_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SKI"); + private static final QName _X509DataTypeX509SubjectName_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509SubjectName"); + private static final QName _X509DataTypeX509Certificate_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509Certificate"); + private static final QName _X509DataTypeX509CRL_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "X509CRL"); + private static final QName _TransformTypeXPath_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "XPath"); + private static final 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: org.w3._2000._09.xmldsig_ @@ -70,6 +70,8 @@ public class ObjectFactory { /** * Create an instance of {@link SignatureType } * + * @return + * the new instance of {@link SignatureType } */ public SignatureType createSignatureType() { return new SignatureType(); @@ -78,6 +80,8 @@ public class ObjectFactory { /** * Create an instance of {@link SignatureValueType } * + * @return + * the new instance of {@link SignatureValueType } */ public SignatureValueType createSignatureValueType() { return new SignatureValueType(); @@ -86,6 +90,8 @@ public class ObjectFactory { /** * Create an instance of {@link SignedInfoType } * + * @return + * the new instance of {@link SignedInfoType } */ public SignedInfoType createSignedInfoType() { return new SignedInfoType(); @@ -94,6 +100,8 @@ public class ObjectFactory { /** * Create an instance of {@link CanonicalizationMethodType } * + * @return + * the new instance of {@link CanonicalizationMethodType } */ public CanonicalizationMethodType createCanonicalizationMethodType() { return new CanonicalizationMethodType(); @@ -102,6 +110,8 @@ public class ObjectFactory { /** * Create an instance of {@link SignatureMethodType } * + * @return + * the new instance of {@link SignatureMethodType } */ public SignatureMethodType createSignatureMethodType() { return new SignatureMethodType(); @@ -110,6 +120,8 @@ public class ObjectFactory { /** * Create an instance of {@link ReferenceType } * + * @return + * the new instance of {@link ReferenceType } */ public ReferenceType createReferenceType() { return new ReferenceType(); @@ -118,6 +130,8 @@ public class ObjectFactory { /** * Create an instance of {@link TransformsType } * + * @return + * the new instance of {@link TransformsType } */ public TransformsType createTransformsType() { return new TransformsType(); @@ -126,6 +140,8 @@ public class ObjectFactory { /** * Create an instance of {@link TransformType } * + * @return + * the new instance of {@link TransformType } */ public TransformType createTransformType() { return new TransformType(); @@ -134,6 +150,8 @@ public class ObjectFactory { /** * Create an instance of {@link DigestMethodType } * + * @return + * the new instance of {@link DigestMethodType } */ public DigestMethodType createDigestMethodType() { return new DigestMethodType(); @@ -142,6 +160,8 @@ public class ObjectFactory { /** * Create an instance of {@link KeyInfoType } * + * @return + * the new instance of {@link KeyInfoType } */ public KeyInfoType createKeyInfoType() { return new KeyInfoType(); @@ -150,6 +170,8 @@ public class ObjectFactory { /** * Create an instance of {@link KeyValueType } * + * @return + * the new instance of {@link KeyValueType } */ public KeyValueType createKeyValueType() { return new KeyValueType(); @@ -158,6 +180,8 @@ public class ObjectFactory { /** * Create an instance of {@link RetrievalMethodType } * + * @return + * the new instance of {@link RetrievalMethodType } */ public RetrievalMethodType createRetrievalMethodType() { return new RetrievalMethodType(); @@ -166,6 +190,8 @@ public class ObjectFactory { /** * Create an instance of {@link X509DataType } * + * @return + * the new instance of {@link X509DataType } */ public X509DataType createX509DataType() { return new X509DataType(); @@ -174,6 +200,8 @@ public class ObjectFactory { /** * Create an instance of {@link PGPDataType } * + * @return + * the new instance of {@link PGPDataType } */ public PGPDataType createPGPDataType() { return new PGPDataType(); @@ -182,6 +210,8 @@ public class ObjectFactory { /** * Create an instance of {@link SPKIDataType } * + * @return + * the new instance of {@link SPKIDataType } */ public SPKIDataType createSPKIDataType() { return new SPKIDataType(); @@ -190,6 +220,8 @@ public class ObjectFactory { /** * Create an instance of {@link ObjectType } * + * @return + * the new instance of {@link ObjectType } */ public ObjectType createObjectType() { return new ObjectType(); @@ -198,6 +230,8 @@ public class ObjectFactory { /** * Create an instance of {@link ManifestType } * + * @return + * the new instance of {@link ManifestType } */ public ManifestType createManifestType() { return new ManifestType(); @@ -206,6 +240,8 @@ public class ObjectFactory { /** * Create an instance of {@link SignaturePropertiesType } * + * @return + * the new instance of {@link SignaturePropertiesType } */ public SignaturePropertiesType createSignaturePropertiesType() { return new SignaturePropertiesType(); @@ -214,6 +250,8 @@ public class ObjectFactory { /** * Create an instance of {@link SignaturePropertyType } * + * @return + * the new instance of {@link SignaturePropertyType } */ public SignaturePropertyType createSignaturePropertyType() { return new SignaturePropertyType(); @@ -222,6 +260,8 @@ public class ObjectFactory { /** * Create an instance of {@link DSAKeyValueType } * + * @return + * the new instance of {@link DSAKeyValueType } */ public DSAKeyValueType createDSAKeyValueType() { return new DSAKeyValueType(); @@ -230,6 +270,8 @@ public class ObjectFactory { /** * Create an instance of {@link RSAKeyValueType } * + * @return + * the new instance of {@link RSAKeyValueType } */ public RSAKeyValueType createRSAKeyValueType() { return new RSAKeyValueType(); @@ -238,6 +280,8 @@ public class ObjectFactory { /** * Create an instance of {@link X509IssuerSerialType } * + * @return + * the new instance of {@link X509IssuerSerialType } */ public X509IssuerSerialType createX509IssuerSerialType() { return new X509IssuerSerialType(); @@ -253,7 +297,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Signature") public JAXBElement createSignature(SignatureType value) { - return new JAXBElement(_Signature_QNAME, SignatureType.class, null, value); + return new JAXBElement<>(_Signature_QNAME, SignatureType.class, null, value); } /** @@ -266,7 +310,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureValue") public JAXBElement createSignatureValue(SignatureValueType value) { - return new JAXBElement(_SignatureValue_QNAME, SignatureValueType.class, null, value); + return new JAXBElement<>(_SignatureValue_QNAME, SignatureValueType.class, null, value); } /** @@ -279,7 +323,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignedInfo") public JAXBElement createSignedInfo(SignedInfoType value) { - return new JAXBElement(_SignedInfo_QNAME, SignedInfoType.class, null, value); + return new JAXBElement<>(_SignedInfo_QNAME, SignedInfoType.class, null, value); } /** @@ -292,7 +336,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "CanonicalizationMethod") public JAXBElement createCanonicalizationMethod(CanonicalizationMethodType value) { - return new JAXBElement(_CanonicalizationMethod_QNAME, CanonicalizationMethodType.class, null, value); + return new JAXBElement<>(_CanonicalizationMethod_QNAME, CanonicalizationMethodType.class, null, value); } /** @@ -305,7 +349,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureMethod") public JAXBElement createSignatureMethod(SignatureMethodType value) { - return new JAXBElement(_SignatureMethod_QNAME, SignatureMethodType.class, null, value); + return new JAXBElement<>(_SignatureMethod_QNAME, SignatureMethodType.class, null, value); } /** @@ -318,7 +362,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Reference") public JAXBElement createReference(ReferenceType value) { - return new JAXBElement(_Reference_QNAME, ReferenceType.class, null, value); + return new JAXBElement<>(_Reference_QNAME, ReferenceType.class, null, value); } /** @@ -331,7 +375,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transforms") public JAXBElement createTransforms(TransformsType value) { - return new JAXBElement(_Transforms_QNAME, TransformsType.class, null, value); + return new JAXBElement<>(_Transforms_QNAME, TransformsType.class, null, value); } /** @@ -344,7 +388,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Transform") public JAXBElement createTransform(TransformType value) { - return new JAXBElement(_Transform_QNAME, TransformType.class, null, value); + return new JAXBElement<>(_Transform_QNAME, TransformType.class, null, value); } /** @@ -357,7 +401,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestMethod") public JAXBElement createDigestMethod(DigestMethodType value) { - return new JAXBElement(_DigestMethod_QNAME, DigestMethodType.class, null, value); + return new JAXBElement<>(_DigestMethod_QNAME, DigestMethodType.class, null, value); } /** @@ -370,7 +414,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DigestValue") public JAXBElement createDigestValue(String value) { - return new JAXBElement(_DigestValue_QNAME, String.class, null, value); + return new JAXBElement<>(_DigestValue_QNAME, String.class, null, value); } /** @@ -383,7 +427,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyInfo") public JAXBElement createKeyInfo(KeyInfoType value) { - return new JAXBElement(_KeyInfo_QNAME, KeyInfoType.class, null, value); + return new JAXBElement<>(_KeyInfo_QNAME, KeyInfoType.class, null, value); } /** @@ -396,7 +440,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyName") public JAXBElement createKeyName(String value) { - return new JAXBElement(_KeyName_QNAME, String.class, null, value); + return new JAXBElement<>(_KeyName_QNAME, String.class, null, value); } /** @@ -409,7 +453,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "MgmtData") public JAXBElement createMgmtData(String value) { - return new JAXBElement(_MgmtData_QNAME, String.class, null, value); + return new JAXBElement<>(_MgmtData_QNAME, String.class, null, value); } /** @@ -422,7 +466,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "KeyValue") public JAXBElement createKeyValue(KeyValueType value) { - return new JAXBElement(_KeyValue_QNAME, KeyValueType.class, null, value); + return new JAXBElement<>(_KeyValue_QNAME, KeyValueType.class, null, value); } /** @@ -435,7 +479,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RetrievalMethod") public JAXBElement createRetrievalMethod(RetrievalMethodType value) { - return new JAXBElement(_RetrievalMethod_QNAME, RetrievalMethodType.class, null, value); + return new JAXBElement<>(_RetrievalMethod_QNAME, RetrievalMethodType.class, null, value); } /** @@ -448,7 +492,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Data") public JAXBElement createX509Data(X509DataType value) { - return new JAXBElement(_X509Data_QNAME, X509DataType.class, null, value); + return new JAXBElement<>(_X509Data_QNAME, X509DataType.class, null, value); } /** @@ -461,7 +505,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPData") public JAXBElement createPGPData(PGPDataType value) { - return new JAXBElement(_PGPData_QNAME, PGPDataType.class, null, value); + return new JAXBElement<>(_PGPData_QNAME, PGPDataType.class, null, value); } /** @@ -474,7 +518,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKIData") public JAXBElement createSPKIData(SPKIDataType value) { - return new JAXBElement(_SPKIData_QNAME, SPKIDataType.class, null, value); + return new JAXBElement<>(_SPKIData_QNAME, SPKIDataType.class, null, value); } /** @@ -487,7 +531,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Object") public JAXBElement createObject(ObjectType value) { - return new JAXBElement(_Object_QNAME, ObjectType.class, null, value); + return new JAXBElement<>(_Object_QNAME, ObjectType.class, null, value); } /** @@ -500,7 +544,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "Manifest") public JAXBElement createManifest(ManifestType value) { - return new JAXBElement(_Manifest_QNAME, ManifestType.class, null, value); + return new JAXBElement<>(_Manifest_QNAME, ManifestType.class, null, value); } /** @@ -513,7 +557,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperties") public JAXBElement createSignatureProperties(SignaturePropertiesType value) { - return new JAXBElement(_SignatureProperties_QNAME, SignaturePropertiesType.class, null, value); + return new JAXBElement<>(_SignatureProperties_QNAME, SignaturePropertiesType.class, null, value); } /** @@ -526,7 +570,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SignatureProperty") public JAXBElement createSignatureProperty(SignaturePropertyType value) { - return new JAXBElement(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); + return new JAXBElement<>(_SignatureProperty_QNAME, SignaturePropertyType.class, null, value); } /** @@ -539,7 +583,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "DSAKeyValue") public JAXBElement createDSAKeyValue(DSAKeyValueType value) { - return new JAXBElement(_DSAKeyValue_QNAME, DSAKeyValueType.class, null, value); + return new JAXBElement<>(_DSAKeyValue_QNAME, DSAKeyValueType.class, null, value); } /** @@ -552,7 +596,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "RSAKeyValue") public JAXBElement createRSAKeyValue(RSAKeyValueType value) { - return new JAXBElement(_RSAKeyValue_QNAME, RSAKeyValueType.class, null, value); + return new JAXBElement<>(_RSAKeyValue_QNAME, RSAKeyValueType.class, null, value); } /** @@ -565,7 +609,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "SPKISexp", scope = SPKIDataType.class) public JAXBElement createSPKIDataTypeSPKISexp(String value) { - return new JAXBElement(_SPKIDataTypeSPKISexp_QNAME, String.class, SPKIDataType.class, value); + return new JAXBElement<>(_SPKIDataTypeSPKISexp_QNAME, String.class, SPKIDataType.class, value); } /** @@ -578,7 +622,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyID", scope = PGPDataType.class) public JAXBElement createPGPDataTypePGPKeyID(String value) { - return new JAXBElement(_PGPDataTypePGPKeyID_QNAME, String.class, PGPDataType.class, value); + return new JAXBElement<>(_PGPDataTypePGPKeyID_QNAME, String.class, PGPDataType.class, value); } /** @@ -591,7 +635,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "PGPKeyPacket", scope = PGPDataType.class) public JAXBElement createPGPDataTypePGPKeyPacket(String value) { - return new JAXBElement(_PGPDataTypePGPKeyPacket_QNAME, String.class, PGPDataType.class, value); + return new JAXBElement<>(_PGPDataTypePGPKeyPacket_QNAME, String.class, PGPDataType.class, value); } /** @@ -604,7 +648,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509IssuerSerial", scope = X509DataType.class) public JAXBElement createX509DataTypeX509IssuerSerial(X509IssuerSerialType value) { - return new JAXBElement(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); + return new JAXBElement<>(_X509DataTypeX509IssuerSerial_QNAME, X509IssuerSerialType.class, X509DataType.class, value); } /** @@ -617,7 +661,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SKI", scope = X509DataType.class) public JAXBElement createX509DataTypeX509SKI(String value) { - return new JAXBElement(_X509DataTypeX509SKI_QNAME, String.class, X509DataType.class, value); + return new JAXBElement<>(_X509DataTypeX509SKI_QNAME, String.class, X509DataType.class, value); } /** @@ -630,7 +674,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509SubjectName", scope = X509DataType.class) public JAXBElement createX509DataTypeX509SubjectName(String value) { - return new JAXBElement(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); + return new JAXBElement<>(_X509DataTypeX509SubjectName_QNAME, String.class, X509DataType.class, value); } /** @@ -643,7 +687,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509Certificate", scope = X509DataType.class) public JAXBElement createX509DataTypeX509Certificate(String value) { - return new JAXBElement(_X509DataTypeX509Certificate_QNAME, String.class, X509DataType.class, value); + return new JAXBElement<>(_X509DataTypeX509Certificate_QNAME, String.class, X509DataType.class, value); } /** @@ -656,7 +700,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "X509CRL", scope = X509DataType.class) public JAXBElement createX509DataTypeX509CRL(String value) { - return new JAXBElement(_X509DataTypeX509CRL_QNAME, String.class, X509DataType.class, value); + return new JAXBElement<>(_X509DataTypeX509CRL_QNAME, String.class, X509DataType.class, value); } /** @@ -669,7 +713,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "XPath", scope = TransformType.class) public JAXBElement createTransformTypeXPath(String value) { - return new JAXBElement(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); + return new JAXBElement<>(_TransformTypeXPath_QNAME, String.class, TransformType.class, value); } /** @@ -682,7 +726,7 @@ public class ObjectFactory { */ @XmlElementDecl(namespace = "http://www.w3.org/2000/09/xmldsig#", name = "HMACOutputLength", scope = SignatureMethodType.class) public JAXBElement createSignatureMethodTypeHMACOutputLength(BigInteger value) { - return new JAXBElement(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); + return new JAXBElement<>(_SignatureMethodTypeHMACOutputLength_QNAME, BigInteger.class, SignatureMethodType.class, value); } } diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectType.java index eee62207..c0741683 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ObjectType.java @@ -3,38 +3,38 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for ObjectType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -61,16 +61,16 @@ public class ObjectType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * @@ -79,18 +79,21 @@ public class ObjectType { * {@link Object } * {@link String } * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -102,7 +105,7 @@ public class ObjectType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is @@ -114,7 +117,7 @@ public class ObjectType { } /** - * Ruft den Wert der mimeType-Eigenschaft ab. + * Gets the value of the mimeType property. * * @return * possible object is @@ -126,7 +129,7 @@ public class ObjectType { } /** - * Legt den Wert der mimeType-Eigenschaft fest. + * Sets the value of the mimeType property. * * @param value * allowed object is @@ -138,7 +141,7 @@ public class ObjectType { } /** - * Ruft den Wert der encoding-Eigenschaft ab. + * Gets the value of the encoding property. * * @return * possible object is @@ -150,7 +153,7 @@ public class ObjectType { } /** - * Legt den Wert der encoding-Eigenschaft fest. + * Sets the value of the encoding property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/PGPDataType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/PGPDataType.java index 10718f18..12c4d7db 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/PGPDataType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/PGPDataType.java @@ -3,40 +3,40 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for PGPDataType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <complexType name="PGPDataType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <sequence>
- *           <element name="PGPKeyID" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *           <element name="PGPKeyPacket" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
- *           <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *         <sequence>
- *           <element name="PGPKeyPacket" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *           <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- *         </sequence>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *           
+ *           
+ *           
+ *         
+ *         
+ *           
+ *           
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -46,6 +46,19 @@ import org.w3c.dom.Element; }) public class PGPDataType { + /** + * Gets the rest of the content model. + * + *

+ * 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 184 of file:/home/gpalfinger/Documents/pdf-as-4-kiro/pdf-as-moa/src/main/resources/wsdl/W3C-XMLDSig.xsd + * line 180 of file:/home/gpalfinger/Documents/pdf-as-4-kiro/pdf-as-moa/src/main/resources/wsdl/W3C-XMLDSig.xsd + *

+ * To get rid of this property, apply a property customization to one + * of both of the following declarations to change their names: + * + */ @XmlElementRefs({ @XmlElementRef(name = "PGPKeyID", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false), @XmlElementRef(name = "PGPKeyPacket", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class, required = false) @@ -54,43 +67,47 @@ public class PGPDataType { protected List content; /** - * Ruft das restliche Contentmodell ab. + * Gets the rest of the content model. * *

- * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: - * Der Feldname "PGPKeyPacket" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: - * Zeile 184 von file:/home/tlenz/Projekte/pdfas4/source/pdf-as-moa/src/main/resources/wsdl/W3C-XMLDSig.xsd - * Zeile 180 von file:/home/tlenz/Projekte/pdfas4/source/pdf-as-moa/src/main/resources/wsdl/W3C-XMLDSig.xsd + * 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 184 of file:/home/gpalfinger/Documents/pdf-as-4-kiro/pdf-as-moa/src/main/resources/wsdl/W3C-XMLDSig.xsd + * line 180 of file:/home/gpalfinger/Documents/pdf-as-4-kiro/pdf-as-moa/src/main/resources/wsdl/W3C-XMLDSig.xsd *

- * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine - * der beiden folgenden Deklarationen an, um deren Namen zu ändern: + * To get rid of this property, apply a property customization to one + * of both of the following declarations to change their names: + * * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RSAKeyValueType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RSAKeyValueType.java index 11468613..6547431e 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RSAKeyValueType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RSAKeyValueType.java @@ -1,29 +1,29 @@ package org.w3._2000._09.xmldsig_; -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; /** - *

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

Java class for RSAKeyValueType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -40,7 +40,7 @@ public class RSAKeyValueType { protected String exponent; /** - * Ruft den Wert der modulus-Eigenschaft ab. + * Gets the value of the modulus property. * * @return * possible object is @@ -52,7 +52,7 @@ public class RSAKeyValueType { } /** - * Legt den Wert der modulus-Eigenschaft fest. + * Sets the value of the modulus property. * * @param value * allowed object is @@ -64,7 +64,7 @@ public class RSAKeyValueType { } /** - * Ruft den Wert der exponent-Eigenschaft ab. + * Gets the value of the exponent property. * * @return * possible object is @@ -76,7 +76,7 @@ public class RSAKeyValueType { } /** - * Legt den Wert der exponent-Eigenschaft fest. + * Sets the value of the exponent property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ReferenceType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ReferenceType.java index bba2a97a..f66a94dc 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ReferenceType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/ReferenceType.java @@ -1,38 +1,38 @@ package org.w3._2000._09.xmldsig_; -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; /** - *

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

Java class for ReferenceType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *         
+ *       
+ *       
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -63,7 +63,7 @@ public class ReferenceType { protected String type; /** - * Ruft den Wert der transforms-Eigenschaft ab. + * Gets the value of the transforms property. * * @return * possible object is @@ -75,7 +75,7 @@ public class ReferenceType { } /** - * Legt den Wert der transforms-Eigenschaft fest. + * Sets the value of the transforms property. * * @param value * allowed object is @@ -87,7 +87,7 @@ public class ReferenceType { } /** - * Ruft den Wert der digestMethod-Eigenschaft ab. + * Gets the value of the digestMethod property. * * @return * possible object is @@ -99,7 +99,7 @@ public class ReferenceType { } /** - * Legt den Wert der digestMethod-Eigenschaft fest. + * Sets the value of the digestMethod property. * * @param value * allowed object is @@ -111,7 +111,7 @@ public class ReferenceType { } /** - * Ruft den Wert der digestValue-Eigenschaft ab. + * Gets the value of the digestValue property. * * @return * possible object is @@ -123,7 +123,7 @@ public class ReferenceType { } /** - * Legt den Wert der digestValue-Eigenschaft fest. + * Sets the value of the digestValue property. * * @param value * allowed object is @@ -135,7 +135,7 @@ public class ReferenceType { } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -147,7 +147,7 @@ public class ReferenceType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is @@ -159,7 +159,7 @@ public class ReferenceType { } /** - * Ruft den Wert der uri-Eigenschaft ab. + * Gets the value of the uri property. * * @return * possible object is @@ -171,7 +171,7 @@ public class ReferenceType { } /** - * Legt den Wert der uri-Eigenschaft fest. + * Sets the value of the uri property. * * @param value * allowed object is @@ -183,7 +183,7 @@ public class ReferenceType { } /** - * Ruft den Wert der type-Eigenschaft ab. + * Gets the value of the type property. * * @return * possible object is @@ -195,7 +195,7 @@ public class ReferenceType { } /** - * Legt den Wert der type-Eigenschaft fest. + * Sets the value of the type property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RetrievalMethodType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RetrievalMethodType.java index 59a3febc..46d11039 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RetrievalMethodType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/RetrievalMethodType.java @@ -1,32 +1,32 @@ package org.w3._2000._09.xmldsig_; -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; /** - *

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

Java class for RetrievalMethodType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <complexType name="RetrievalMethodType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Transforms" type="{http://www.w3.org/2000/09/xmldsig#}TransformsType" 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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -46,7 +46,7 @@ public class RetrievalMethodType { protected String type; /** - * Ruft den Wert der transforms-Eigenschaft ab. + * Gets the value of the transforms property. * * @return * possible object is @@ -58,7 +58,7 @@ public class RetrievalMethodType { } /** - * Legt den Wert der transforms-Eigenschaft fest. + * Sets the value of the transforms property. * * @param value * allowed object is @@ -70,7 +70,7 @@ public class RetrievalMethodType { } /** - * Ruft den Wert der uri-Eigenschaft ab. + * Gets the value of the uri property. * * @return * possible object is @@ -82,7 +82,7 @@ public class RetrievalMethodType { } /** - * Legt den Wert der uri-Eigenschaft fest. + * Sets the value of the uri property. * * @param value * allowed object is @@ -94,7 +94,7 @@ public class RetrievalMethodType { } /** - * Ruft den Wert der type-Eigenschaft ab. + * Gets the value of the type property. * * @return * possible object is @@ -106,7 +106,7 @@ public class RetrievalMethodType { } /** - * Legt den Wert der type-Eigenschaft fest. + * Sets the value of the type property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SPKIDataType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SPKIDataType.java index 34264510..77efcc79 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SPKIDataType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SPKIDataType.java @@ -3,32 +3,32 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for SPKIDataType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <complexType name="SPKIDataType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence maxOccurs="unbounded">
- *         <element name="SPKISexp" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *         <any processContents='lax' namespace='##other' minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -45,30 +45,33 @@ public class SPKIDataType { /** * Gets the value of the spkiSexpAndAny property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getSPKISexpAndAny().add(newItem);
+     * getSPKISexpAndAny().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} + * {@link Object } * {@link Element } + *

* * + * @return + * The value of the spkiSexpAndAny property. */ public List getSPKISexpAndAny() { if (spkiSexpAndAny == null) { - spkiSexpAndAny = new ArrayList(); + spkiSexpAndAny = new ArrayList<>(); } return this.spkiSexpAndAny; } diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureMethodType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureMethodType.java index 268deb8a..079717a9 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureMethodType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureMethodType.java @@ -4,35 +4,35 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for SignatureMethodType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -53,36 +53,39 @@ public class SignatureMethodType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der algorithm-Eigenschaft ab. + * Gets the value of the algorithm property. * * @return * possible object is @@ -94,7 +97,7 @@ public class SignatureMethodType { } /** - * Legt den Wert der algorithm-Eigenschaft fest. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertiesType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertiesType.java index 850af98e..5f920450 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertiesType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertiesType.java @@ -3,34 +3,34 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for SignaturePropertiesType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -51,34 +51,37 @@ public class SignaturePropertiesType { /** * Gets the value of the signatureProperty property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getSignatureProperty().add(newItem);
+     * getSignatureProperty().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SignaturePropertyType } + *

* * + * @return + * The value of the signatureProperty property. */ public List getSignatureProperty() { if (signatureProperty == null) { - signatureProperty = new ArrayList(); + signatureProperty = new ArrayList<>(); } return this.signatureProperty; } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -90,7 +93,7 @@ public class SignaturePropertiesType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertyType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertyType.java index f7f0317b..4a89ae76 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertyType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignaturePropertyType.java @@ -3,37 +3,37 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for SignaturePropertyType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -58,16 +58,16 @@ public class SignaturePropertyType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * @@ -76,18 +76,21 @@ public class SignaturePropertyType { * {@link Object } * {@link String } * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der target-Eigenschaft ab. + * Gets the value of the target property. * * @return * possible object is @@ -99,7 +102,7 @@ public class SignaturePropertyType { } /** - * Legt den Wert der target-Eigenschaft fest. + * Sets the value of the target property. * * @param value * allowed object is @@ -111,7 +114,7 @@ public class SignaturePropertyType { } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -123,7 +126,7 @@ public class SignaturePropertyType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureType.java index cb841082..f18bfcc1 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureType.java @@ -3,37 +3,37 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for SignatureType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *         
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -61,7 +61,7 @@ public class SignatureType { protected String id; /** - * Ruft den Wert der signedInfo-Eigenschaft ab. + * Gets the value of the signedInfo property. * * @return * possible object is @@ -73,7 +73,7 @@ public class SignatureType { } /** - * Legt den Wert der signedInfo-Eigenschaft fest. + * Sets the value of the signedInfo property. * * @param value * allowed object is @@ -85,7 +85,7 @@ public class SignatureType { } /** - * Ruft den Wert der signatureValue-Eigenschaft ab. + * Gets the value of the signatureValue property. * * @return * possible object is @@ -97,7 +97,7 @@ public class SignatureType { } /** - * Legt den Wert der signatureValue-Eigenschaft fest. + * Sets the value of the signatureValue property. * * @param value * allowed object is @@ -109,7 +109,7 @@ public class SignatureType { } /** - * Ruft den Wert der keyInfo-Eigenschaft ab. + * Gets the value of the keyInfo property. * * @return * possible object is @@ -121,7 +121,7 @@ public class SignatureType { } /** - * Legt den Wert der keyInfo-Eigenschaft fest. + * Sets the value of the keyInfo property. * * @param value * allowed object is @@ -135,34 +135,37 @@ public class SignatureType { /** * Gets the value of the object property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getObject().add(newItem);
+     * getObject().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ObjectType } + *

* * + * @return + * The value of the object property. */ public List getObject() { if (object == null) { - object = new ArrayList(); + object = new ArrayList<>(); } return this.object; } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -174,7 +177,7 @@ public class SignatureType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureValueType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureValueType.java index 989a950b..d3df4969 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureValueType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignatureValueType.java @@ -1,31 +1,31 @@ package org.w3._2000._09.xmldsig_; -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; /** - *

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

Java class for SignatureValueType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <complexType name="SignatureValueType">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2000/09/xmldsig#>CryptoBinary">
- *       <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -44,7 +44,7 @@ public class SignatureValueType { protected String id; /** - * Ruft den Wert der value-Eigenschaft ab. + * Gets the value of the value property. * * @return * possible object is @@ -56,7 +56,7 @@ public class SignatureValueType { } /** - * Legt den Wert der value-Eigenschaft fest. + * Sets the value of the value property. * * @param value * allowed object is @@ -68,7 +68,7 @@ public class SignatureValueType { } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -80,7 +80,7 @@ public class SignatureValueType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignedInfoType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignedInfoType.java index f38b247f..6c1d1e49 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignedInfoType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/SignedInfoType.java @@ -3,36 +3,36 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for SignedInfoType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -57,7 +57,7 @@ public class SignedInfoType { protected String id; /** - * Ruft den Wert der canonicalizationMethod-Eigenschaft ab. + * Gets the value of the canonicalizationMethod property. * * @return * possible object is @@ -69,7 +69,7 @@ public class SignedInfoType { } /** - * Legt den Wert der canonicalizationMethod-Eigenschaft fest. + * Sets the value of the canonicalizationMethod property. * * @param value * allowed object is @@ -81,7 +81,7 @@ public class SignedInfoType { } /** - * Ruft den Wert der signatureMethod-Eigenschaft ab. + * Gets the value of the signatureMethod property. * * @return * possible object is @@ -93,7 +93,7 @@ public class SignedInfoType { } /** - * Legt den Wert der signatureMethod-Eigenschaft fest. + * Sets the value of the signatureMethod property. * * @param value * allowed object is @@ -107,34 +107,37 @@ public class SignedInfoType { /** * Gets the value of the reference property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getReference().add(newItem);
+     * getReference().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReferenceType } + *

* * + * @return + * The value of the reference property. */ public List getReference() { if (reference == null) { - reference = new ArrayList(); + reference = new ArrayList<>(); } return this.reference; } /** - * Ruft den Wert der id-Eigenschaft ab. + * Gets the value of the id property. * * @return * possible object is @@ -146,7 +149,7 @@ public class SignedInfoType { } /** - * Legt den Wert der id-Eigenschaft fest. + * Sets the value of the id property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformType.java index 83d64908..77615614 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformType.java @@ -3,36 +3,36 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for TransformType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *       
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -53,37 +53,40 @@ public class TransformType { /** * Gets the value of the content property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getContent().add(newItem);
+     * getContent().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list + * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } * {@link String } - * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } + *

* * + * @return + * The value of the content property. */ public List getContent() { if (content == null) { - content = new ArrayList(); + content = new ArrayList<>(); } return this.content; } /** - * Ruft den Wert der algorithm-Eigenschaft ab. + * Gets the value of the algorithm property. * * @return * possible object is @@ -95,7 +98,7 @@ public class TransformType { } /** - * Legt den Wert der algorithm-Eigenschaft fest. + * Sets the value of the algorithm property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformsType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformsType.java index 933bc662..dd7c72c2 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformsType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/TransformsType.java @@ -3,28 +3,28 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for TransformsType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -40,28 +40,31 @@ public class TransformsType { /** * Gets the value of the transform property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getTransform().add(newItem);
+     * getTransform().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TransformType } + *

* * + * @return + * The value of the transform property. */ public List getTransform() { if (transform == null) { - transform = new ArrayList(); + transform = new ArrayList<>(); } return this.transform; } diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509DataType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509DataType.java index e99a02d6..44a4afdc 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509DataType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509DataType.java @@ -3,39 +3,39 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for X509DataType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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/2000/09/xmldsig#}CryptoBinary"/>
- *           <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *           <element name="X509Certificate" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *           <element name="X509CRL" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
- *           <any processContents='lax' namespace='##other'/>
- *         </choice>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *           
+ *           
+ *           
+ *           
+ *           
+ *           
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -58,34 +58,37 @@ public class X509DataType { /** * Gets the value of the x509IssuerSerialOrX509SKIOrX509SubjectName property. * - *

- * This accessor method returns a reference to the live list, + *

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

* *

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

*
-     *    getX509IssuerSerialOrX509SKIOrX509SubjectName().add(newItem);
+     * getX509IssuerSerialOrX509SKIOrX509SubjectName().add(newItem);
      * 
* * *

* Objects of the following type(s) are allowed in the list - * {@link Object } * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link X509IssuerSerialType }{@code >} + * {@link Object } * {@link Element } + *

* * + * @return + * The value of the x509IssuerSerialOrX509SKIOrX509SubjectName property. */ public List getX509IssuerSerialOrX509SKIOrX509SubjectName() { if (x509IssuerSerialOrX509SKIOrX509SubjectName == null) { - x509IssuerSerialOrX509SKIOrX509SubjectName = new ArrayList(); + x509IssuerSerialOrX509SKIOrX509SubjectName = new ArrayList<>(); } return this.x509IssuerSerialOrX509SKIOrX509SubjectName; } diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509IssuerSerialType.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509IssuerSerialType.java index 98e286c7..2f96927b 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509IssuerSerialType.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/X509IssuerSerialType.java @@ -2,29 +2,29 @@ package org.w3._2000._09.xmldsig_; 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; /** - *

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

Java class for X509IssuerSerialType complex type

. * - *

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

The following schema fragment specifies the expected content contained within this class.

* - *
- * <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>
- * 
+ *
{@code
+ * 
+ *   
+ *     
+ *       
+ *         
+ *         
+ *       
+ *     
+ *   
+ * 
+ * }
* * */ @@ -41,7 +41,7 @@ public class X509IssuerSerialType { protected BigInteger x509SerialNumber; /** - * Ruft den Wert der x509IssuerName-Eigenschaft ab. + * Gets the value of the x509IssuerName property. * * @return * possible object is @@ -53,7 +53,7 @@ public class X509IssuerSerialType { } /** - * Legt den Wert der x509IssuerName-Eigenschaft fest. + * Sets the value of the x509IssuerName property. * * @param value * allowed object is @@ -65,7 +65,7 @@ public class X509IssuerSerialType { } /** - * Ruft den Wert der x509SerialNumber-Eigenschaft ab. + * Gets the value of the x509SerialNumber property. * * @return * possible object is @@ -77,7 +77,7 @@ public class X509IssuerSerialType { } /** - * Legt den Wert der x509SerialNumber-Eigenschaft fest. + * Sets the value of the x509SerialNumber property. * * @param value * allowed object is diff --git a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/package-info.java b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/package-info.java index 96d5b4b5..13b13252 100644 --- a/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/package-info.java +++ b/pdf-as-moa/src/generated/java/org/w3/_2000/_09/xmldsig_/package-info.java @@ -1,2 +1,2 @@ -@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 org.w3._2000._09.xmldsig_; -- cgit v1.2.3