summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java b/src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java
index 8b02ee5..77343cc 100644
--- a/src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java
+++ b/src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java
@@ -20,6 +20,7 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="JwsAlg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="Cert" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* <element name="Out" type="{urn:SZRServices}SignContentEntry" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
@@ -32,12 +33,15 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SignContentResponseType", propOrder = {
"jwsAlg",
+ "cert",
"out"
})
public class SignContentResponseType {
@XmlElement(name = "JwsAlg")
protected String jwsAlg;
+ @XmlElement(name = "Cert")
+ protected byte[] cert;
@XmlElement(name = "Out")
protected List<SignContentEntry> out;
@@ -66,6 +70,28 @@ public class SignContentResponseType {
}
/**
+ * Ruft den Wert der cert-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * byte[]
+ */
+ public byte[] getCert() {
+ return cert;
+ }
+
+ /**
+ * Legt den Wert der cert-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * byte[]
+ */
+ public void setCert(byte[] value) {
+ this.cert = value;
+ }
+
+ /**
* Gets the value of the out property.
*
* <p>