LegitimationType generiert

This commit is contained in:
2022-01-29 11:25:04 +01:00
parent 0e7d386e0f
commit 17bd97f99e

View File

@@ -0,0 +1,61 @@
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds2Types.v2_14.ELLegitimationType;
/**
* <p>Java-Klasse für Legitimation_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Legitimation_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds20}EL-Legitimation_Type"&gt;
* &lt;attribute name="AusstellendesLand" type="{urn:omds20}LandesCd_Type" /&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Legitimation_Type")
public class LegitimationType
extends ELLegitimationType
{
@XmlAttribute(name = "AusstellendesLand", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected String ausstellendesLand;
/**
* Ruft den Wert der ausstellendesLand-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAusstellendesLand() {
return ausstellendesLand;
}
/**
* Legt den Wert der ausstellendesLand-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAusstellendesLand(String value) {
this.ausstellendesLand = value;
}
}