package at.gv.util.xsd.ersb; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.ersb.personendata1.PersonenDatenTyp; /** *

Java class for ErsbRequest complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ErsbRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PersonenDaten" type="{http://statistik.at/namespace/ersb/persondata/1#}PersonenDatenTyp"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ErsbRequest", propOrder = { "personenDaten" }) public class ErsbRequest { @XmlElement(name = "PersonenDaten", required = true) protected PersonenDatenTyp personenDaten; @XmlAttribute(name = "id") protected BigInteger id; /** * Gets the value of the personenDaten property. * * @return * possible object is * {@link PersonenDatenTyp } * */ public PersonenDatenTyp getPersonenDaten() { return personenDaten; } /** * Sets the value of the personenDaten property. * * @param value * allowed object is * {@link PersonenDatenTyp } * */ public void setPersonenDaten(PersonenDatenTyp value) { this.personenDaten = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link BigInteger } * */ public void setId(BigInteger value) { this.id = value; } }