aboutsummaryrefslogtreecommitdiff
path: root/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java
diff options
context:
space:
mode:
Diffstat (limited to 'moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java')
-rw-r--r--moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java39
1 files changed, 37 insertions, 2 deletions
diff --git a/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java b/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java
index cf03ae7..e1567bc 100644
--- a/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java
+++ b/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/PDFSignatureResultType.java
@@ -2,12 +2,14 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.11.27 at 11:17:03 AM CET
+// Generated on: 2015.11.30 at 11:32:30 AM CET
//
package at.gv.egiz.moasig;
+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;
@@ -27,6 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="SignerInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType"/>
* &lt;element name="SignatureCheck" type="{http://reference.e-government.gv.at/namespace/moa/20151109#}CheckResultType"/>
* &lt;element name="CertificateCheck" type="{http://reference.e-government.gv.at/namespace/moa/20151109#}CheckResultType"/>
+ * &lt;element name="FormCheckResult" type="{http://reference.e-government.gv.at/namespace/moa/20151109#}FormResultType" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -39,7 +42,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "PDFSignatureResultType", propOrder = {
"signerInfo",
"signatureCheck",
- "certificateCheck"
+ "certificateCheck",
+ "formCheckResult"
})
public class PDFSignatureResultType {
@@ -49,6 +53,8 @@ public class PDFSignatureResultType {
protected CheckResultType signatureCheck;
@XmlElement(name = "CertificateCheck", required = true)
protected CheckResultType certificateCheck;
+ @XmlElement(name = "FormCheckResult")
+ protected List<FormResultType> formCheckResult;
/**
* Gets the value of the signerInfo property.
@@ -122,4 +128,33 @@ public class PDFSignatureResultType {
this.certificateCheck = value;
}
+ /**
+ * Gets the value of the formCheckResult 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 formCheckResult property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getFormCheckResult().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link FormResultType }
+ *
+ *
+ */
+ public List<FormResultType> getFormCheckResult() {
+ if (formCheckResult == null) {
+ formCheckResult = new ArrayList<FormResultType>();
+ }
+ return this.formCheckResult;
+ }
+
}