// // 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.XmlElement; import jakarta.xml.bind.annotation.XmlType; /** *
Java-Klasse für XMLDataObjectAssociationType complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType name="XMLDataObjectAssociationType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MetaInfo" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}MetaInfoType" minOccurs="0"/>
* <element name="Content" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentRequiredRefType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "XMLDataObjectAssociationType", propOrder = {
"metaInfo",
"content"
})
public class XMLDataObjectAssociationType {
@XmlElement(name = "MetaInfo")
protected MetaInfoType metaInfo;
@XmlElement(name = "Content", required = true)
protected ContentRequiredRefType content;
/**
* Ruft den Wert der metaInfo-Eigenschaft ab.
*
* @return
* possible object is
* {@link MetaInfoType }
*
*/
public MetaInfoType getMetaInfo() {
return metaInfo;
}
/**
* Legt den Wert der metaInfo-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link MetaInfoType }
*
*/
public void setMetaInfo(MetaInfoType value) {
this.metaInfo = value;
}
/**
* Ruft den Wert der content-Eigenschaft ab.
*
* @return
* possible object is
* {@link ContentRequiredRefType }
*
*/
public ContentRequiredRefType getContent() {
return content;
}
/**
* Legt den Wert der content-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ContentRequiredRefType }
*
*/
public void setContent(ContentRequiredRefType value) {
this.content = value;
}
}