From 651657a31add2bdde906165f7498791e7bd846cd Mon Sep 17 00:00:00 2001 From: Tobias Kellner Date: Mon, 8 Jun 2015 01:21:39 +0200 Subject: Update SecurityLayer Schema BulkRequest, PAdESCompatibility added --- .../securitylayer/_1_2_3/BulkResponseType.java | 796 +++++++++++++++++++++ 1 file changed, 796 insertions(+) create mode 100644 utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/BulkResponseType.java (limited to 'utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/BulkResponseType.java') diff --git a/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/BulkResponseType.java b/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/BulkResponseType.java new file mode 100644 index 00000000..dd06fb4f --- /dev/null +++ b/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/BulkResponseType.java @@ -0,0 +1,796 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2015.06.01 at 04:42:31 PM CEST +// + + +package at.buergerkarte.namespaces.securitylayer._1_2_3; + +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.XmlAttribute; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlID; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + + +/** + *

Java class for BulkResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="BulkResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element name="CreateSignatureResponse" maxOccurs="unbounded">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <choice>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}CreateCMSSignatureResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}CreateXMLSignatureResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+ *                 </choice>
+ *                 <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="VerifySignatureResponse" maxOccurs="unbounded">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <choice>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}VerifyCMSSignatureResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}VerifyXMLSignatureResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+ *                 </choice>
+ *                 <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="EncryptResponse" maxOccurs="unbounded">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <choice>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}EncryptCMSResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}EncryptXMLResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+ *                 </choice>
+ *                 <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="DecryptResponse" maxOccurs="unbounded">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <choice>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}DecryptCMSResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}DecryptXMLResponse"/>
+ *                   <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+ *                 </choice>
+ *                 <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BulkResponseType", propOrder = { + "createSignatureResponse", + "verifySignatureResponse", + "encryptResponse", + "decryptResponse" +}) +public class BulkResponseType { + + @XmlElement(name = "CreateSignatureResponse") + protected List createSignatureResponse; + @XmlElement(name = "VerifySignatureResponse") + protected List verifySignatureResponse; + @XmlElement(name = "EncryptResponse") + protected List encryptResponse; + @XmlElement(name = "DecryptResponse") + protected List decryptResponse; + + /** + * Gets the value of the createSignatureResponse property. + * + *

+ * 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 set method for the createSignatureResponse property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getCreateSignatureResponse().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BulkResponseType.CreateSignatureResponse } + * + * + */ + public List getCreateSignatureResponse() { + if (createSignatureResponse == null) { + createSignatureResponse = new ArrayList(); + } + return this.createSignatureResponse; + } + + /** + * Gets the value of the verifySignatureResponse property. + * + *

+ * 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 set method for the verifySignatureResponse property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getVerifySignatureResponse().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BulkResponseType.VerifySignatureResponse } + * + * + */ + public List getVerifySignatureResponse() { + if (verifySignatureResponse == null) { + verifySignatureResponse = new ArrayList(); + } + return this.verifySignatureResponse; + } + + /** + * Gets the value of the encryptResponse property. + * + *

+ * 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 set method for the encryptResponse property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getEncryptResponse().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BulkResponseType.EncryptResponse } + * + * + */ + public List getEncryptResponse() { + if (encryptResponse == null) { + encryptResponse = new ArrayList(); + } + return this.encryptResponse; + } + + /** + * Gets the value of the decryptResponse property. + * + *

+ * 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 set method for the decryptResponse property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDecryptResponse().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BulkResponseType.DecryptResponse } + * + * + */ + public List getDecryptResponse() { + if (decryptResponse == null) { + decryptResponse = new ArrayList(); + } + return this.decryptResponse; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <choice>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}CreateCMSSignatureResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}CreateXMLSignatureResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+     *       </choice>
+     *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "createCMSSignatureResponse", + "createXMLSignatureResponse", + "errorResponse" + }) + public static class CreateSignatureResponse { + + @XmlElement(name = "CreateCMSSignatureResponse") + protected CreateCMSSignatureResponseType createCMSSignatureResponse; + @XmlElement(name = "CreateXMLSignatureResponse") + protected CreateXMLSignatureResponseType createXMLSignatureResponse; + @XmlElement(name = "ErrorResponse") + protected ErrorResponseType errorResponse; + @XmlAttribute(name = "id") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlID + @XmlSchemaType(name = "ID") + protected String id; + + /** + * Gets the value of the createCMSSignatureResponse property. + * + * @return + * possible object is + * {@link CreateCMSSignatureResponseType } + * + */ + public CreateCMSSignatureResponseType getCreateCMSSignatureResponse() { + return createCMSSignatureResponse; + } + + /** + * Sets the value of the createCMSSignatureResponse property. + * + * @param value + * allowed object is + * {@link CreateCMSSignatureResponseType } + * + */ + public void setCreateCMSSignatureResponse(CreateCMSSignatureResponseType value) { + this.createCMSSignatureResponse = value; + } + + /** + * Gets the value of the createXMLSignatureResponse property. + * + * @return + * possible object is + * {@link CreateXMLSignatureResponseType } + * + */ + public CreateXMLSignatureResponseType getCreateXMLSignatureResponse() { + return createXMLSignatureResponse; + } + + /** + * Sets the value of the createXMLSignatureResponse property. + * + * @param value + * allowed object is + * {@link CreateXMLSignatureResponseType } + * + */ + public void setCreateXMLSignatureResponse(CreateXMLSignatureResponseType value) { + this.createXMLSignatureResponse = value; + } + + /** + * Gets the value of the errorResponse property. + * + * @return + * possible object is + * {@link ErrorResponseType } + * + */ + public ErrorResponseType getErrorResponse() { + return errorResponse; + } + + /** + * Sets the value of the errorResponse property. + * + * @param value + * allowed object is + * {@link ErrorResponseType } + * + */ + public void setErrorResponse(ErrorResponseType value) { + this.errorResponse = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <choice>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}DecryptCMSResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}DecryptXMLResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+     *       </choice>
+     *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "decryptCMSResponse", + "decryptXMLResponse", + "errorResponse" + }) + public static class DecryptResponse { + + @XmlElement(name = "DecryptCMSResponse") + protected DecryptCMSResponseType decryptCMSResponse; + @XmlElement(name = "DecryptXMLResponse") + protected DecryptXMLResponseType decryptXMLResponse; + @XmlElement(name = "ErrorResponse") + protected ErrorResponseType errorResponse; + @XmlAttribute(name = "id") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlID + @XmlSchemaType(name = "ID") + protected String id; + + /** + * Gets the value of the decryptCMSResponse property. + * + * @return + * possible object is + * {@link DecryptCMSResponseType } + * + */ + public DecryptCMSResponseType getDecryptCMSResponse() { + return decryptCMSResponse; + } + + /** + * Sets the value of the decryptCMSResponse property. + * + * @param value + * allowed object is + * {@link DecryptCMSResponseType } + * + */ + public void setDecryptCMSResponse(DecryptCMSResponseType value) { + this.decryptCMSResponse = value; + } + + /** + * Gets the value of the decryptXMLResponse property. + * + * @return + * possible object is + * {@link DecryptXMLResponseType } + * + */ + public DecryptXMLResponseType getDecryptXMLResponse() { + return decryptXMLResponse; + } + + /** + * Sets the value of the decryptXMLResponse property. + * + * @param value + * allowed object is + * {@link DecryptXMLResponseType } + * + */ + public void setDecryptXMLResponse(DecryptXMLResponseType value) { + this.decryptXMLResponse = value; + } + + /** + * Gets the value of the errorResponse property. + * + * @return + * possible object is + * {@link ErrorResponseType } + * + */ + public ErrorResponseType getErrorResponse() { + return errorResponse; + } + + /** + * Sets the value of the errorResponse property. + * + * @param value + * allowed object is + * {@link ErrorResponseType } + * + */ + public void setErrorResponse(ErrorResponseType value) { + this.errorResponse = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <choice>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}EncryptCMSResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}EncryptXMLResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+     *       </choice>
+     *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "encryptCMSResponse", + "encryptXMLResponse", + "errorResponse" + }) + public static class EncryptResponse { + + @XmlElement(name = "EncryptCMSResponse") + protected EncryptCMSResponseType encryptCMSResponse; + @XmlElement(name = "EncryptXMLResponse") + protected EncryptXMLResponseType encryptXMLResponse; + @XmlElement(name = "ErrorResponse") + protected ErrorResponseType errorResponse; + @XmlAttribute(name = "id") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlID + @XmlSchemaType(name = "ID") + protected String id; + + /** + * Gets the value of the encryptCMSResponse property. + * + * @return + * possible object is + * {@link EncryptCMSResponseType } + * + */ + public EncryptCMSResponseType getEncryptCMSResponse() { + return encryptCMSResponse; + } + + /** + * Sets the value of the encryptCMSResponse property. + * + * @param value + * allowed object is + * {@link EncryptCMSResponseType } + * + */ + public void setEncryptCMSResponse(EncryptCMSResponseType value) { + this.encryptCMSResponse = value; + } + + /** + * Gets the value of the encryptXMLResponse property. + * + * @return + * possible object is + * {@link EncryptXMLResponseType } + * + */ + public EncryptXMLResponseType getEncryptXMLResponse() { + return encryptXMLResponse; + } + + /** + * Sets the value of the encryptXMLResponse property. + * + * @param value + * allowed object is + * {@link EncryptXMLResponseType } + * + */ + public void setEncryptXMLResponse(EncryptXMLResponseType value) { + this.encryptXMLResponse = value; + } + + /** + * Gets the value of the errorResponse property. + * + * @return + * possible object is + * {@link ErrorResponseType } + * + */ + public ErrorResponseType getErrorResponse() { + return errorResponse; + } + + /** + * Sets the value of the errorResponse property. + * + * @param value + * allowed object is + * {@link ErrorResponseType } + * + */ + public void setErrorResponse(ErrorResponseType value) { + this.errorResponse = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <choice>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}VerifyCMSSignatureResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}VerifyXMLSignatureResponse"/>
+     *         <element ref="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}ErrorResponse"/>
+     *       </choice>
+     *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "verifyCMSSignatureResponse", + "verifyXMLSignatureResponse", + "errorResponse" + }) + public static class VerifySignatureResponse { + + @XmlElement(name = "VerifyCMSSignatureResponse") + protected VerifyCMSSignatureResponseType verifyCMSSignatureResponse; + @XmlElement(name = "VerifyXMLSignatureResponse") + protected VerifyXMLSignatureResponseType verifyXMLSignatureResponse; + @XmlElement(name = "ErrorResponse") + protected ErrorResponseType errorResponse; + @XmlAttribute(name = "id") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlID + @XmlSchemaType(name = "ID") + protected String id; + + /** + * Gets the value of the verifyCMSSignatureResponse property. + * + * @return + * possible object is + * {@link VerifyCMSSignatureResponseType } + * + */ + public VerifyCMSSignatureResponseType getVerifyCMSSignatureResponse() { + return verifyCMSSignatureResponse; + } + + /** + * Sets the value of the verifyCMSSignatureResponse property. + * + * @param value + * allowed object is + * {@link VerifyCMSSignatureResponseType } + * + */ + public void setVerifyCMSSignatureResponse(VerifyCMSSignatureResponseType value) { + this.verifyCMSSignatureResponse = value; + } + + /** + * Gets the value of the verifyXMLSignatureResponse property. + * + * @return + * possible object is + * {@link VerifyXMLSignatureResponseType } + * + */ + public VerifyXMLSignatureResponseType getVerifyXMLSignatureResponse() { + return verifyXMLSignatureResponse; + } + + /** + * Sets the value of the verifyXMLSignatureResponse property. + * + * @param value + * allowed object is + * {@link VerifyXMLSignatureResponseType } + * + */ + public void setVerifyXMLSignatureResponse(VerifyXMLSignatureResponseType value) { + this.verifyXMLSignatureResponse = value; + } + + /** + * Gets the value of the errorResponse property. + * + * @return + * possible object is + * {@link ErrorResponseType } + * + */ + public ErrorResponseType getErrorResponse() { + return errorResponse; + } + + /** + * Sets the value of the errorResponse property. + * + * @param value + * allowed object is + * {@link ErrorResponseType } + * + */ + public void setErrorResponse(ErrorResponseType value) { + this.errorResponse = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + } + +} -- cgit v1.2.3