From 6336eb94021158575a15abd0efb8f3089197d0ab Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Wed, 8 Oct 2014 17:54:06 +0200 Subject: Introduced PDF-AS-MOA --- .../_20020822/SecureSignatureCreationDevice.java | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 pdf-as-moa/src/generated/java/at/gv/e_government/reference/namespace/moa/_20020822/SecureSignatureCreationDevice.java (limited to 'pdf-as-moa/src/generated/java/at/gv/e_government/reference/namespace/moa/_20020822/SecureSignatureCreationDevice.java') diff --git a/pdf-as-moa/src/generated/java/at/gv/e_government/reference/namespace/moa/_20020822/SecureSignatureCreationDevice.java b/pdf-as-moa/src/generated/java/at/gv/e_government/reference/namespace/moa/_20020822/SecureSignatureCreationDevice.java new file mode 100644 index 00000000..4c115280 --- /dev/null +++ b/pdf-as-moa/src/generated/java/at/gv/e_government/reference/namespace/moa/_20020822/SecureSignatureCreationDevice.java @@ -0,0 +1,70 @@ + +package at.gv.e_government.reference.namespace.moa._20020822; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + + +/** + *

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">
+ *       <attribute name="source">
+ *         <simpleType>
+ *           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
+ *             <enumeration value="TSL"/>
+ *             <enumeration value="Certificate"/>
+ *           </restriction>
+ *         </simpleType>
+ *       </attribute>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "") +@XmlRootElement(name = "SecureSignatureCreationDevice") +public class SecureSignatureCreationDevice { + + @XmlAttribute(name = "source") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + protected String source; + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSource(String value) { + this.source = value; + } + +} -- cgit v1.2.3