package at.gv.util.xsd.ur_V7.search; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType name="Auslandsdaten">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sitz" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="hgName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Auslandsdaten", propOrder = { "id", "sitz", "hgName" }) @XmlSeeAlso({ AuslandsdatenVollzug.class }) public abstract class Auslandsdaten { protected String id; protected String sitz; protected String hgName; /** * Ruft den Wert der id-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Legt den Wert der id-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Ruft den Wert der sitz-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSitz() { return sitz; } /** * Legt den Wert der sitz-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSitz(String value) { this.sitz = value; } /** * Ruft den Wert der hgName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getHgName() { return hgName; } /** * Legt den Wert der hgName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setHgName(String value) { this.hgName = value; } }