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.java123
1 files changed, 123 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
new file mode 100644
index 0000000..77343cc
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr_v4/SignContentResponseType.java
@@ -0,0 +1,123 @@
+
+package at.gv.util.xsd.szr_v4;
+
+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;
+
+
+/**
+ * <p>Java-Klasse für SignContentResponseType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="SignContentResponseType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="JwsAlg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
+ * &lt;element name="Cert" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/&gt;
+ * &lt;element name="Out" type="{urn:SZRServices}SignContentEntry" maxOccurs="unbounded" minOccurs="0"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@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;
+
+ /**
+ * Ruft den Wert der jwsAlg-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getJwsAlg() {
+ return jwsAlg;
+ }
+
+ /**
+ * Legt den Wert der jwsAlg-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setJwsAlg(String value) {
+ this.jwsAlg = value;
+ }
+
+ /**
+ * 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>
+ * 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 <CODE>set</CODE> method for the out property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getOut().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link SignContentEntry }
+ *
+ *
+ */
+ public List<SignContentEntry> getOut() {
+ if (out == null) {
+ out = new ArrayList<SignContentEntry>();
+ }
+ return this.out;
+ }
+
+}