package at.gv.util.xsd.ur_V2.xmlsw; 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.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.ur_V2.pd.PersonenDatenTyp; /** *

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}PersonenDaten"/>
 *         <element ref="{http://statistik.at/namespace/ur/stammdaten/2#}URV_pdf" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "personenDaten", "urvPdf" }) @XmlRootElement(name = "ResultRecord") public class ResultRecord { @XmlElement(name = "PersonenDaten", namespace = "http://reference.e-government.gv.at/namespace/persondata/de/20040201#", required = true) protected PersonenDatenTyp personenDaten; @XmlElement(name = "URV_pdf", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") protected byte[] urvPdf; @XmlAttribute(name = "id") @XmlSchemaType(name = "nonNegativeInteger") 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 urvPdf property. * * @return * possible object is * byte[] */ public byte[] getURVPdf() { return urvPdf; } /** * Sets the value of the urvPdf property. * * @param value * allowed object is * byte[] */ public void setURVPdf(byte[] value) { this.urvPdf = 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; } }