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 Tag und Ort der Eheschließung bzw. der Begründung der Lebenspartnerschaft. * *

Java class for TBegruendung complex type. * *

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

 * <complexType name="TBegruendung">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Tag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum"/>
 *         <element name="Ort" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
 *         <element name="Ortsteil" 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"/>
 *         <element name="BehoerdeDerBegruendung" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TBegruendung", propOrder = { "tag", "ort", "ortsteil", "kreis", "land", "behoerdeDerBegruendung" }) public class TBegruendung { @XmlElement(name = "Tag", required = true) protected String tag; @XmlElement(name = "Ort", required = true) protected String ort; @XmlElement(name = "Ortsteil") protected String ortsteil; @XmlElement(name = "Kreis") protected String kreis; @XmlElement(name = "Land") protected String land; @XmlElement(name = "BehoerdeDerBegruendung") protected String behoerdeDerBegruendung; /** * Gets the value of the tag property. * * @return * possible object is * {@link String } * */ public String getTag() { return tag; } /** * Sets the value of the tag property. * * @param value * allowed object is * {@link String } * */ public void setTag(String value) { this.tag = 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 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 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; } /** * Gets the value of the behoerdeDerBegruendung property. * * @return * possible object is * {@link String } * */ public String getBehoerdeDerBegruendung() { return behoerdeDerBegruendung; } /** * Sets the value of the behoerdeDerBegruendung property. * * @param value * allowed object is * {@link String } * */ public void setBehoerdeDerBegruendung(String value) { this.behoerdeDerBegruendung = value; } }