package at.gv.util.xsd.ur_V2.search; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *

Java class for SucheUnternehmensdaten complex type. * *

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

 * <complexType name="SucheUnternehmensdaten">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="phonetisch" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="untName" type="{http://statistik.at/namespace/ur/simpleTypes/2#}UntNameTyp" minOccurs="0"/>
 *         <element name="rechtsform" type="{http://statistik.at/namespace/ur/simpleTypes/2#}RechtsformTyp" minOccurs="0"/>
 *         <element name="id" type="{http://statistik.at/namespace/ur/simpleTypes/2#}IdTyp" minOccurs="0"/>
 *         <element name="idArt" type="{http://statistik.at/namespace/ur/simpleTypes/2#}IdArtTyp" minOccurs="0"/>
 *         <element name="strasse" type="{http://statistik.at/namespace/ur/simpleTypes/2#}StrasseTyp" minOccurs="0"/>
 *         <element name="hNr" type="{http://statistik.at/namespace/ur/simpleTypes/2#}HNrTyp" minOccurs="0"/>
 *         <element name="ort" type="{http://statistik.at/namespace/ur/simpleTypes/2#}OrtTyp" minOccurs="0"/>
 *         <element name="gemnr" type="{http://statistik.at/namespace/ur/simpleTypes/2#}GemnrTyp" minOccurs="0"/>
 *         <element name="plz" type="{http://statistik.at/namespace/ur/simpleTypes/2#}PlzTyp" minOccurs="0"/>
 *         <element name="land" type="{http://statistik.at/namespace/ur/simpleTypes/2#}LandTyp" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SucheUnternehmensdaten", propOrder = { "phonetisch", "untName", "rechtsform", "id", "idArt", "strasse", "hNr", "ort", "gemnr", "plz", "land" }) public class SucheUnternehmensdaten { protected Boolean phonetisch; protected String untName; protected Integer rechtsform; protected String id; protected String idArt; protected String strasse; protected String hNr; protected String ort; protected Integer gemnr; protected String plz; protected String land; /** * Gets the value of the phonetisch property. * * @return * possible object is * {@link Boolean } * */ public Boolean isPhonetisch() { return phonetisch; } /** * Sets the value of the phonetisch property. * * @param value * allowed object is * {@link Boolean } * */ public void setPhonetisch(Boolean value) { this.phonetisch = value; } /** * Gets the value of the untName property. * * @return * possible object is * {@link String } * */ public String getUntName() { return untName; } /** * Sets the value of the untName property. * * @param value * allowed object is * {@link String } * */ public void setUntName(String value) { this.untName = value; } /** * Gets the value of the rechtsform property. * * @return * possible object is * {@link Integer } * */ public Integer getRechtsform() { return rechtsform; } /** * Sets the value of the rechtsform property. * * @param value * allowed object is * {@link Integer } * */ public void setRechtsform(Integer value) { this.rechtsform = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the idArt property. * * @return * possible object is * {@link String } * */ public String getIdArt() { return idArt; } /** * Sets the value of the idArt property. * * @param value * allowed object is * {@link String } * */ public void setIdArt(String value) { this.idArt = 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; } }