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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ enthält die Angaben zum Tod eines Ehegatten oder Lebenspartners für die Eintragung der Auflösung von Ehe oder Lebenspartnerschaft. * *

Java class for TTodPartner complex type. * *

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

 * <complexType name="TTodPartner">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Todesart" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TTodesart" minOccurs="0"/>
 *         <element name="Todestag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
 *         <element name="LetzterTag" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="Todesort" 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 = "TTodPartner", propOrder = { "todesart", "todestag", "letzterTag", "todesort", "kreis", "land" }) public class TTodPartner { @XmlElement(name = "Todesart") protected String todesart; @XmlElement(name = "Todestag") protected String todestag; @XmlElement(name = "LetzterTag") @XmlSchemaType(name = "date") protected XMLGregorianCalendar letzterTag; @XmlElement(name = "Todesort") protected String todesort; @XmlElement(name = "Kreis") protected String kreis; @XmlElement(name = "Land") protected String land; /** * Gets the value of the todesart property. * * @return * possible object is * {@link String } * */ public String getTodesart() { return todesart; } /** * Sets the value of the todesart property. * * @param value * allowed object is * {@link String } * */ public void setTodesart(String value) { this.todesart = value; } /** * Gets the value of the todestag property. * * @return * possible object is * {@link String } * */ public String getTodestag() { return todestag; } /** * Sets the value of the todestag property. * * @param value * allowed object is * {@link String } * */ public void setTodestag(String value) { this.todestag = value; } /** * Gets the value of the letzterTag property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLetzterTag() { return letzterTag; } /** * Sets the value of the letzterTag property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLetzterTag(XMLGregorianCalendar value) { this.letzterTag = value; } /** * Gets the value of the todesort property. * * @return * possible object is * {@link String } * */ public String getTodesort() { return todesort; } /** * Sets the value of the todesort property. * * @param value * allowed object is * {@link String } * */ public void setTodesort(String value) { this.todesort = 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; } }