summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java26
1 files changed, 0 insertions, 26 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 77343cc..8b02ee5 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,7 +20,6 @@ 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>
@@ -33,15 +32,12 @@ 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;
@@ -70,28 +66,6 @@ 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>