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; /** * Der Typ TAufloesungEntscheidung enthält alle Angaben über die Auflösung einer * Ehe oder Lebenspartnerschaft. Diese Datenstruktur soll auch verwendet werden, * wenn die Feststellung der Todeszeit oder die Todeserklärung oder deren * Aufhebung vorliegt, obwohl die Lebenspartnerschaft sowie die Ehe weiter * besteht. * *

Java class for TAufloesungEntscheidung complex type. * *

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

 * <complexType name="TAufloesungEntscheidung">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ArtEntscheidung" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="DatumAufloesung" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TAufloesungEntscheidung", propOrder = { "artEntscheidung", "datumAufloesung" }) public class TAufloesungEntscheidung { @XmlElement(name = "ArtEntscheidung") protected String artEntscheidung; @XmlElement(name = "DatumAufloesung") @XmlSchemaType(name = "date") protected XMLGregorianCalendar datumAufloesung; /** * Gets the value of the artEntscheidung property. * * @return * possible object is * {@link String } * */ public String getArtEntscheidung() { return artEntscheidung; } /** * Sets the value of the artEntscheidung property. * * @param value * allowed object is * {@link String } * */ public void setArtEntscheidung(String value) { this.artEntscheidung = value; } /** * Gets the value of the datumAufloesung property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDatumAufloesung() { return datumAufloesung; } /** * Sets the value of the datumAufloesung property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDatumAufloesung(XMLGregorianCalendar value) { this.datumAufloesung = value; } }