// // 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:42 PM CET // package at.gv.egiz.asic; import jakarta.xml.bind.annotation.XmlAccessType; import jakarta.xml.bind.annotation.XmlAccessorType; import jakarta.xml.bind.annotation.XmlAttribute; import jakarta.xml.bind.annotation.XmlSchemaType; import jakarta.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType name="SigReferenceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SigReferenceType", namespace = "http://uri.etsi.org/02918/v1.2.1#") public class SigReferenceType { @XmlAttribute(name = "URI", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlAttribute(name = "MimeType") protected String mimeType; /** * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getURI() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setURI(String value) { this.uri = value; } /** * Ruft den Wert der mimeType-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getMimeType() { return mimeType; } /** * Legt den Wert der mimeType-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setMimeType(String value) { this.mimeType = value; } }