// // 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.XmlSchemaType; import jakarta.xml.bind.annotation.XmlSeeAlso; import jakarta.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType name="ContentOptionalRefType">
 *   <complexContent>
 *     <extension base="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentBaseType">
 *       <attribute name="Reference" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContentOptionalRefType") @XmlSeeAlso({ at.gv.egiz.moasig.DataObjectInfoType.DataObject.class, CMSContentBaseType.class, ContentRequiredRefType.class }) public class ContentOptionalRefType extends ContentBaseType { @XmlAttribute(name = "Reference") @XmlSchemaType(name = "anyURI") protected String reference; /** * Ruft den Wert der reference-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getReference() { return reference; } /** * Legt den Wert der reference-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setReference(String value) { this.reference = value; } }