// // 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 // package at.gv.egiz.moasig; import jakarta.xml.bind.annotation.XmlAccessType; import jakarta.xml.bind.annotation.XmlAccessorType; import jakarta.xml.bind.annotation.XmlAttribute; import jakarta.xml.bind.annotation.XmlRootElement; import jakarta.xml.bind.annotation.XmlType; import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter; import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

Java-Klasse für anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <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; /** * Ruft den Wert der source-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSource() { return source; } /** * Legt den Wert der source-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSource(String value) { this.source = value; } }