LegitimationType generiert
This commit is contained in:
@@ -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>
|
||||||
|
* <complexType name="Legitimation_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds20}EL-Legitimation_Type">
|
||||||
|
* <attribute name="AusstellendesLand" type="{urn:omds20}LandesCd_Type" />
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user