package de.fh_giessen.epr.inhalt.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ enthält die Angaben zu einem Wohnort. * *

Java class for TWohnung complex type. * *

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

 * <complexType name="TWohnung">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Wohnort" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="PLZ" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Ortsteil" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Strasse" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Nummer" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Kreis" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Land" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TWohnung", propOrder = { "wohnort", "plz", "ortsteil", "strasse", "nummer", "kreis", "land" }) public class TWohnung { @XmlElement(name = "Wohnort") protected String wohnort; @XmlElement(name = "PLZ") protected String plz; @XmlElement(name = "Ortsteil") protected String ortsteil; @XmlElement(name = "Strasse") protected String strasse; @XmlElement(name = "Nummer") protected String nummer; @XmlElement(name = "Kreis") protected String kreis; @XmlElement(name = "Land") protected String land; /** * Gets the value of the wohnort property. * * @return * possible object is * {@link String } * */ public String getWohnort() { return wohnort; } /** * Sets the value of the wohnort property. * * @param value * allowed object is * {@link String } * */ public void setWohnort(String value) { this.wohnort = 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 ortsteil property. * * @return * possible object is * {@link String } * */ public String getOrtsteil() { return ortsteil; } /** * Sets the value of the ortsteil property. * * @param value * allowed object is * {@link String } * */ public void setOrtsteil(String value) { this.ortsteil = 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 nummer property. * * @return * possible object is * {@link String } * */ public String getNummer() { return nummer; } /** * Sets the value of the nummer property. * * @param value * allowed object is * {@link String } * */ public void setNummer(String value) { this.nummer = value; } /** * Gets the value of the kreis property. * * @return * possible object is * {@link String } * */ public String getKreis() { return kreis; } /** * Sets the value of the kreis property. * * @param value * allowed object is * {@link String } * */ public void setKreis(String value) { this.kreis = 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; } }