package de.fh_giessen.epr.wsregister.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Informationen über ein Standesamts: Name und Standesamtsnummer. * *
Java class for TStAmtInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TStAmtInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="StAmtName" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
* <element name="StAmtNummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TStAmtInfo", propOrder = {
"stAmtName",
"stAmtNummer"
})
@XmlSeeAlso({
TStAmtStrukturInfo.class
})
public class TStAmtInfo {
@XmlElement(name = "StAmtName", required = true)
protected String stAmtName;
@XmlElement(name = "StAmtNummer", required = true)
protected String stAmtNummer;
/**
* Gets the value of the stAmtName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStAmtName() {
return stAmtName;
}
/**
* Sets the value of the stAmtName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStAmtName(String value) {
this.stAmtName = value;
}
/**
* Gets the value of the stAmtNummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStAmtNummer() {
return stAmtNummer;
}
/**
* Sets the value of the stAmtNummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStAmtNummer(String value) {
this.stAmtNummer = value;
}
}