package at.gv.util.xsd.szr; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PersonInfo" type="{urn:SZRServices}PersonInfoType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "personInfo" }) @XmlRootElement(name = "GetStammzahl") public class GetStammzahl { @XmlElement(name = "PersonInfo", required = true) protected PersonInfoType personInfo; /** * Ruft den Wert der personInfo-Eigenschaft ab. * * @return * possible object is * {@link PersonInfoType } * */ public PersonInfoType getPersonInfo() { return personInfo; } /** * Legt den Wert der personInfo-Eigenschaft fest. * * @param value * allowed object is * {@link PersonInfoType } * */ public void setPersonInfo(PersonInfoType value) { this.personInfo = value; } }