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.java155
1 files changed, 121 insertions, 34 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 79e888e..9cf14df 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
@@ -1,8 +1,8 @@
//
-// 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: 2016.06.15 at 04:11:53 PM CEST
+// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.2 generiert
+// Siehe https://eclipse-ee4j.github.io/jaxb-ri
+// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
+// Generiert: 2021.12.14 um 08:52:50 PM CET
//
@@ -10,31 +10,36 @@ 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;
-import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
+import jakarta.xml.bind.annotation.XmlElement;
+import jakarta.xml.bind.annotation.XmlSchemaType;
+import jakarta.xml.bind.annotation.XmlType;
/**
- * <p>Java class for PDFSignatureResultType complex type.
+ * <p>Java-Klasse für PDFSignatureResultType complex type.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
- * &lt;complexType name="PDFSignatureResultType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &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/20020822#}CheckResultType"/>
- * &lt;element name="CertificateCheck" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}CheckResultType"/>
- * &lt;element name="FormCheckResult" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}FormResultType" maxOccurs="unbounded" minOccurs="0"/>
- * &lt;element name="ExtendedCertificateCheck" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ExtendedCertificateCheckResultType" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
+ * &lt;complexType name="PDFSignatureResultType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="SignerInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType" minOccurs="0"/&gt;
+ * &lt;element name="SigningTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
+ * &lt;element name="SignatureAlgorithm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
+ * &lt;element name="SignatureCheck" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}CheckResultType"/&gt;
+ * &lt;element name="CertificateCheck" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}CheckResultType"/&gt;
+ * &lt;element name="FormCheckResult" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}FormResultType" maxOccurs="unbounded" minOccurs="0"/&gt;
+ * &lt;element name="ExtendedCertificateCheck" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ExtendedCertificateCheckResultType" minOccurs="0"/&gt;
+ * &lt;element name="SignatureProperties" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}PDFSignatureProperties" minOccurs="0"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
* </pre>
*
*
@@ -42,15 +47,23 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PDFSignatureResultType", propOrder = {
"signerInfo",
+ "signingTime",
+ "signatureAlgorithm",
"signatureCheck",
"certificateCheck",
"formCheckResult",
- "extendedCertificateCheck"
+ "extendedCertificateCheck",
+ "signatureProperties"
})
public class PDFSignatureResultType {
- @XmlElement(name = "SignerInfo", required = true)
+ @XmlElement(name = "SignerInfo")
protected KeyInfoType signerInfo;
+ @XmlElement(name = "SigningTime")
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar signingTime;
+ @XmlElement(name = "SignatureAlgorithm")
+ protected String signatureAlgorithm;
@XmlElement(name = "SignatureCheck", required = true)
protected CheckResultType signatureCheck;
@XmlElement(name = "CertificateCheck", required = true)
@@ -59,9 +72,11 @@ public class PDFSignatureResultType {
protected List<FormResultType> formCheckResult;
@XmlElement(name = "ExtendedCertificateCheck")
protected ExtendedCertificateCheckResultType extendedCertificateCheck;
+ @XmlElement(name = "SignatureProperties")
+ protected PDFSignatureProperties signatureProperties;
/**
- * Gets the value of the signerInfo property.
+ * Ruft den Wert der signerInfo-Eigenschaft ab.
*
* @return
* possible object is
@@ -73,7 +88,7 @@ public class PDFSignatureResultType {
}
/**
- * Sets the value of the signerInfo property.
+ * Legt den Wert der signerInfo-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -85,7 +100,55 @@ public class PDFSignatureResultType {
}
/**
- * Gets the value of the signatureCheck property.
+ * Ruft den Wert der signingTime-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getSigningTime() {
+ return signingTime;
+ }
+
+ /**
+ * Legt den Wert der signingTime-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setSigningTime(XMLGregorianCalendar value) {
+ this.signingTime = value;
+ }
+
+ /**
+ * Ruft den Wert der signatureAlgorithm-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSignatureAlgorithm() {
+ return signatureAlgorithm;
+ }
+
+ /**
+ * Legt den Wert der signatureAlgorithm-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSignatureAlgorithm(String value) {
+ this.signatureAlgorithm = value;
+ }
+
+ /**
+ * Ruft den Wert der signatureCheck-Eigenschaft ab.
*
* @return
* possible object is
@@ -97,7 +160,7 @@ public class PDFSignatureResultType {
}
/**
- * Sets the value of the signatureCheck property.
+ * Legt den Wert der signatureCheck-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -109,7 +172,7 @@ public class PDFSignatureResultType {
}
/**
- * Gets the value of the certificateCheck property.
+ * Ruft den Wert der certificateCheck-Eigenschaft ab.
*
* @return
* possible object is
@@ -121,7 +184,7 @@ public class PDFSignatureResultType {
}
/**
- * Sets the value of the certificateCheck property.
+ * Legt den Wert der certificateCheck-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -138,7 +201,7 @@ public class PDFSignatureResultType {
* <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.
+ * returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a <CODE>set</CODE> method for the formCheckResult property.
*
* <p>
@@ -162,7 +225,7 @@ public class PDFSignatureResultType {
}
/**
- * Gets the value of the extendedCertificateCheck property.
+ * Ruft den Wert der extendedCertificateCheck-Eigenschaft ab.
*
* @return
* possible object is
@@ -174,7 +237,7 @@ public class PDFSignatureResultType {
}
/**
- * Sets the value of the extendedCertificateCheck property.
+ * Legt den Wert der extendedCertificateCheck-Eigenschaft fest.
*
* @param value
* allowed object is
@@ -185,4 +248,28 @@ public class PDFSignatureResultType {
this.extendedCertificateCheck = value;
}
+ /**
+ * Ruft den Wert der signatureProperties-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link PDFSignatureProperties }
+ *
+ */
+ public PDFSignatureProperties getSignatureProperties() {
+ return signatureProperties;
+ }
+
+ /**
+ * Legt den Wert der signatureProperties-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link PDFSignatureProperties }
+ *
+ */
+ public void setSignatureProperties(PDFSignatureProperties value) {
+ this.signatureProperties = value;
+ }
+
}