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 --- .../_1_2_3/CreateCMSSignatureRequestType.java | 35 ++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) (limited to 'utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/CreateCMSSignatureRequestType.java') diff --git a/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/CreateCMSSignatureRequestType.java b/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/CreateCMSSignatureRequestType.java index cd7198aa..7067adb4 100644 --- a/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/CreateCMSSignatureRequestType.java +++ b/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1_2_3/CreateCMSSignatureRequestType.java @@ -1,8 +1,8 @@ // -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// 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: 2013.10.31 at 07:38:37 PM CET +// Generated on: 2015.06.01 at 04:42:31 PM CEST // @@ -38,6 +38,7 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; * </restriction> * </simpleType> * </attribute> + * <attribute name="PAdESCompatibility" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> @@ -59,6 +60,8 @@ public class CreateCMSSignatureRequestType { protected CMSDataObjectRequiredMetaType dataObject; @XmlAttribute(name = "Structure", required = true) protected String structure; + @XmlAttribute(name = "PAdESCompatibility") + protected Boolean pAdESCompatibility; /** * Gets the value of the keyboxIdentifier property. @@ -132,4 +135,32 @@ public class CreateCMSSignatureRequestType { this.structure = value; } + /** + * Gets the value of the pAdESCompatibility property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isPAdESCompatibility() { + if (pAdESCompatibility == null) { + return false; + } else { + return pAdESCompatibility; + } + } + + /** + * Sets the value of the pAdESCompatibility property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setPAdESCompatibility(Boolean value) { + this.pAdESCompatibility = value; + } + } -- cgit v1.2.3