From 5fb22cc1b31232c0ef1ceb6ae3c713dbed3e1602 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 20 Feb 2020 15:39:40 +0100 Subject: update SZR_v4 client to new WSDL provided by BM.I per eMail at 2020.02.17 --- .../java/at/gv/util/xsd/szr_v4/SignContent.java | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'src/main/java/at/gv/util/xsd/szr_v4/SignContent.java') diff --git a/src/main/java/at/gv/util/xsd/szr_v4/SignContent.java b/src/main/java/at/gv/util/xsd/szr_v4/SignContent.java index b5a59f9..8a76c6b 100644 --- a/src/main/java/at/gv/util/xsd/szr_v4/SignContent.java +++ b/src/main/java/at/gv/util/xsd/szr_v4/SignContent.java @@ -21,6 +21,7 @@ import javax.xml.bind.annotation.XmlType; * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="AppendCert" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> + * <element name="JWSHeaderParam" type="{urn:SZRServices}JwsHeaderParam" maxOccurs="unbounded" minOccurs="0"/> * <element name="In" type="{urn:SZRServices}SignContentEntry" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> @@ -33,6 +34,7 @@ import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "appendCert", + "jwsHeaderParam", "in" }) @XmlRootElement(name = "SignContent") @@ -40,6 +42,8 @@ public class SignContent { @XmlElement(name = "AppendCert", defaultValue = "false") protected Boolean appendCert; + @XmlElement(name = "JWSHeaderParam") + protected List jwsHeaderParam; @XmlElement(name = "In") protected List in; @@ -67,6 +71,35 @@ public class SignContent { this.appendCert = value; } + /** + * Gets the value of the jwsHeaderParam property. + * + *

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

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

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

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