package at.gv.util.xsd.ur.search; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for SuchePersonendaten complex type. * *

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

 * <complexType name="SuchePersonendaten">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="nachname" type="{http://statistik.at/namespace/ur/simpleTypes/1#}NachnameTyp" minOccurs="0"/>
 *         <element name="vorname" type="{http://statistik.at/namespace/ur/simpleTypes/1#}VornameTyp" minOccurs="0"/>
 *         <element name="gebDatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="strasse" type="{http://statistik.at/namespace/ur/simpleTypes/1#}StrasseTyp" minOccurs="0"/>
 *         <element name="hNr" type="{http://statistik.at/namespace/ur/simpleTypes/1#}HNrTyp" minOccurs="0"/>
 *         <element name="ort" type="{http://statistik.at/namespace/ur/simpleTypes/1#}OrtTyp" minOccurs="0"/>
 *         <element name="gemnr" type="{http://statistik.at/namespace/ur/simpleTypes/1#}GemnrTyp" minOccurs="0"/>
 *         <element name="plz" type="{http://statistik.at/namespace/ur/simpleTypes/1#}PlzTyp" minOccurs="0"/>
 *         <element name="land" type="{http://statistik.at/namespace/ur/simpleTypes/1#}LandTyp" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SuchePersonendaten", propOrder = { "nachname", "vorname", "gebDatum", "strasse", "hNr", "ort", "gemnr", "plz", "land" }) public class SuchePersonendaten { protected String nachname; protected String vorname; @XmlSchemaType(name = "date") protected XMLGregorianCalendar gebDatum; protected String strasse; protected String hNr; protected String ort; protected Integer gemnr; protected String plz; protected String land; /** * Gets the value of the nachname property. * * @return * possible object is * {@link String } * */ public String getNachname() { return nachname; } /** * Sets the value of the nachname property. * * @param value * allowed object is * {@link String } * */ public void setNachname(String value) { this.nachname = value; } /** * Gets the value of the vorname property. * * @return * possible object is * {@link String } * */ public String getVorname() { return vorname; } /** * Sets the value of the vorname property. * * @param value * allowed object is * {@link String } * */ public void setVorname(String value) { this.vorname = value; } /** * Gets the value of the gebDatum property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getGebDatum() { return gebDatum; } /** * Sets the value of the gebDatum property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setGebDatum(XMLGregorianCalendar value) { this.gebDatum = value; } /** * Gets the value of the strasse property. * * @return * possible object is * {@link String } * */ public String getStrasse() { return strasse; } /** * Sets the value of the strasse property. * * @param value * allowed object is * {@link String } * */ public void setStrasse(String value) { this.strasse = value; } /** * Gets the value of the hNr property. * * @return * possible object is * {@link String } * */ public String getHNr() { return hNr; } /** * Sets the value of the hNr property. * * @param value * allowed object is * {@link String } * */ public void setHNr(String value) { this.hNr = value; } /** * Gets the value of the ort property. * * @return * possible object is * {@link String } * */ public String getOrt() { return ort; } /** * Sets the value of the ort property. * * @param value * allowed object is * {@link String } * */ public void setOrt(String value) { this.ort = value; } /** * Gets the value of the gemnr property. * * @return * possible object is * {@link Integer } * */ public Integer getGemnr() { return gemnr; } /** * Sets the value of the gemnr property. * * @param value * allowed object is * {@link Integer } * */ public void setGemnr(Integer value) { this.gemnr = value; } /** * Gets the value of the plz property. * * @return * possible object is * {@link String } * */ public String getPlz() { return plz; } /** * Sets the value of the plz property. * * @param value * allowed object is * {@link String } * */ public void setPlz(String value) { this.plz = value; } /** * Gets the value of the land property. * * @return * possible object is * {@link String } * */ public String getLand() { return land; } /** * Sets the value of the land property. * * @param value * allowed object is * {@link String } * */ public void setLand(String value) { this.land = value; } }