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.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Beurkundung" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TBeurkundung"/>
 *         <element name="BeurkundungsAnlass" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="Ehemann" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TEPartner"/>
 *         <element name="Ehefrau" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TEPartner"/>
 *         <element name="Ehe" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TBegruendung"/>
 *         <element name="ArtAufloesung" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TArtAufloesungEhe" minOccurs="0"/>
 *         <element name="AufloesungEntscheidung" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAufloesungEntscheidung" minOccurs="0"/>
 *         <element name="TodEhefrau" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TTodPartner" minOccurs="0"/>
 *         <element name="TodesErklEhefrau" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="TodesFestEhefrau" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="TodesFestEhefrauZeit" type="{http://www.w3.org/2001/XMLSchema}time" minOccurs="0"/>
 *         <element name="AufhTodesErklEhefrau" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="AuflWiederverheiratungEhefrau" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAuflNeuBegruendung" minOccurs="0"/>
 *         <element name="AuflNeueLPEhefrau" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAuflNeuBegruendung" minOccurs="0"/>
 *         <element name="TodEhemann" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TTodPartner" minOccurs="0"/>
 *         <element name="TodesErklEhemann" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="TodesFestEhemann" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="TodesFestEhemannZeit" type="{http://www.w3.org/2001/XMLSchema}time" minOccurs="0"/>
 *         <element name="AufhTodesErklEhemann" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="AuflWiederverheiratungEhemann" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAuflNeuBegruendung" minOccurs="0"/>
 *         <element name="AuflNeueLPEhemann" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAuflNeuBegruendung" minOccurs="0"/>
 *         <element name="NameNachAuflEhefrau" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamen" minOccurs="0"/>
 *         <element name="NameNachAuflEhemann" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamen" minOccurs="0"/>
 *         <element name="AenderungsInfo" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAenderungsInfo" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "beurkundung", "beurkundungsAnlass", "ehemann", "ehefrau", "ehe", "artAufloesung", "aufloesungEntscheidung", "todEhefrau", "todesErklEhefrau", "todesFestEhefrau", "todesFestEhefrauZeit", "aufhTodesErklEhefrau", "auflWiederverheiratungEhefrau", "auflNeueLPEhefrau", "todEhemann", "todesErklEhemann", "todesFestEhemann", "todesFestEhemannZeit", "aufhTodesErklEhemann", "auflWiederverheiratungEhemann", "auflNeueLPEhemann", "nameNachAuflEhefrau", "nameNachAuflEhemann", "aenderungsInfo" }) @XmlRootElement(name = "EUrkundlTeil") public class EUrkundlTeil { @XmlElement(name = "Beurkundung", required = true) protected TBeurkundung beurkundung; @XmlElement(name = "BeurkundungsAnlass") protected String beurkundungsAnlass; @XmlElement(name = "Ehemann", required = true) protected TEPartner ehemann; @XmlElement(name = "Ehefrau", required = true) protected TEPartner ehefrau; @XmlElement(name = "Ehe", required = true) protected TBegruendung ehe; @XmlElement(name = "ArtAufloesung") protected String artAufloesung; @XmlElement(name = "AufloesungEntscheidung") protected TAufloesungEntscheidung aufloesungEntscheidung; @XmlElement(name = "TodEhefrau") protected TTodPartner todEhefrau; @XmlElement(name = "TodesErklEhefrau") @XmlSchemaType(name = "date") protected XMLGregorianCalendar todesErklEhefrau; @XmlElement(name = "TodesFestEhefrau") @XmlSchemaType(name = "date") protected XMLGregorianCalendar todesFestEhefrau; @XmlElement(name = "TodesFestEhefrauZeit") @XmlSchemaType(name = "time") protected XMLGregorianCalendar todesFestEhefrauZeit; @XmlElement(name = "AufhTodesErklEhefrau") @XmlSchemaType(name = "date") protected XMLGregorianCalendar aufhTodesErklEhefrau; @XmlElement(name = "AuflWiederverheiratungEhefrau") protected TAuflNeuBegruendung auflWiederverheiratungEhefrau; @XmlElement(name = "AuflNeueLPEhefrau") protected TAuflNeuBegruendung auflNeueLPEhefrau; @XmlElement(name = "TodEhemann") protected TTodPartner todEhemann; @XmlElement(name = "TodesErklEhemann") @XmlSchemaType(name = "date") protected XMLGregorianCalendar todesErklEhemann; @XmlElement(name = "TodesFestEhemann") @XmlSchemaType(name = "date") protected XMLGregorianCalendar todesFestEhemann; @XmlElement(name = "TodesFestEhemannZeit") @XmlSchemaType(name = "time") protected XMLGregorianCalendar todesFestEhemannZeit; @XmlElement(name = "AufhTodesErklEhemann") @XmlSchemaType(name = "date") protected XMLGregorianCalendar aufhTodesErklEhemann; @XmlElement(name = "AuflWiederverheiratungEhemann") protected TAuflNeuBegruendung auflWiederverheiratungEhemann; @XmlElement(name = "AuflNeueLPEhemann") protected TAuflNeuBegruendung auflNeueLPEhemann; @XmlElement(name = "NameNachAuflEhefrau") protected TNamen nameNachAuflEhefrau; @XmlElement(name = "NameNachAuflEhemann") protected TNamen nameNachAuflEhemann; @XmlElement(name = "AenderungsInfo") protected TAenderungsInfo aenderungsInfo; /** * Gets the value of the beurkundung property. * * @return * possible object is * {@link TBeurkundung } * */ public TBeurkundung getBeurkundung() { return beurkundung; } /** * Sets the value of the beurkundung property. * * @param value * allowed object is * {@link TBeurkundung } * */ public void setBeurkundung(TBeurkundung value) { this.beurkundung = value; } /** * Gets the value of the beurkundungsAnlass property. * * @return * possible object is * {@link String } * */ public String getBeurkundungsAnlass() { return beurkundungsAnlass; } /** * Sets the value of the beurkundungsAnlass property. * * @param value * allowed object is * {@link String } * */ public void setBeurkundungsAnlass(String value) { this.beurkundungsAnlass = value; } /** * Gets the value of the ehemann property. * * @return * possible object is * {@link TEPartner } * */ public TEPartner getEhemann() { return ehemann; } /** * Sets the value of the ehemann property. * * @param value * allowed object is * {@link TEPartner } * */ public void setEhemann(TEPartner value) { this.ehemann = value; } /** * Gets the value of the ehefrau property. * * @return * possible object is * {@link TEPartner } * */ public TEPartner getEhefrau() { return ehefrau; } /** * Sets the value of the ehefrau property. * * @param value * allowed object is * {@link TEPartner } * */ public void setEhefrau(TEPartner value) { this.ehefrau = value; } /** * Gets the value of the ehe property. * * @return * possible object is * {@link TBegruendung } * */ public TBegruendung getEhe() { return ehe; } /** * Sets the value of the ehe property. * * @param value * allowed object is * {@link TBegruendung } * */ public void setEhe(TBegruendung value) { this.ehe = value; } /** * Gets the value of the artAufloesung property. * * @return * possible object is * {@link String } * */ public String getArtAufloesung() { return artAufloesung; } /** * Sets the value of the artAufloesung property. * * @param value * allowed object is * {@link String } * */ public void setArtAufloesung(String value) { this.artAufloesung = value; } /** * Gets the value of the aufloesungEntscheidung property. * * @return * possible object is * {@link TAufloesungEntscheidung } * */ public TAufloesungEntscheidung getAufloesungEntscheidung() { return aufloesungEntscheidung; } /** * Sets the value of the aufloesungEntscheidung property. * * @param value * allowed object is * {@link TAufloesungEntscheidung } * */ public void setAufloesungEntscheidung(TAufloesungEntscheidung value) { this.aufloesungEntscheidung = value; } /** * Gets the value of the todEhefrau property. * * @return * possible object is * {@link TTodPartner } * */ public TTodPartner getTodEhefrau() { return todEhefrau; } /** * Sets the value of the todEhefrau property. * * @param value * allowed object is * {@link TTodPartner } * */ public void setTodEhefrau(TTodPartner value) { this.todEhefrau = value; } /** * Gets the value of the todesErklEhefrau property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTodesErklEhefrau() { return todesErklEhefrau; } /** * Sets the value of the todesErklEhefrau property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTodesErklEhefrau(XMLGregorianCalendar value) { this.todesErklEhefrau = value; } /** * Gets the value of the todesFestEhefrau property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTodesFestEhefrau() { return todesFestEhefrau; } /** * Sets the value of the todesFestEhefrau property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTodesFestEhefrau(XMLGregorianCalendar value) { this.todesFestEhefrau = value; } /** * Gets the value of the todesFestEhefrauZeit property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTodesFestEhefrauZeit() { return todesFestEhefrauZeit; } /** * Sets the value of the todesFestEhefrauZeit property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTodesFestEhefrauZeit(XMLGregorianCalendar value) { this.todesFestEhefrauZeit = value; } /** * Gets the value of the aufhTodesErklEhefrau property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getAufhTodesErklEhefrau() { return aufhTodesErklEhefrau; } /** * Sets the value of the aufhTodesErklEhefrau property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setAufhTodesErklEhefrau(XMLGregorianCalendar value) { this.aufhTodesErklEhefrau = value; } /** * Gets the value of the auflWiederverheiratungEhefrau property. * * @return * possible object is * {@link TAuflNeuBegruendung } * */ public TAuflNeuBegruendung getAuflWiederverheiratungEhefrau() { return auflWiederverheiratungEhefrau; } /** * Sets the value of the auflWiederverheiratungEhefrau property. * * @param value * allowed object is * {@link TAuflNeuBegruendung } * */ public void setAuflWiederverheiratungEhefrau(TAuflNeuBegruendung value) { this.auflWiederverheiratungEhefrau = value; } /** * Gets the value of the auflNeueLPEhefrau property. * * @return * possible object is * {@link TAuflNeuBegruendung } * */ public TAuflNeuBegruendung getAuflNeueLPEhefrau() { return auflNeueLPEhefrau; } /** * Sets the value of the auflNeueLPEhefrau property. * * @param value * allowed object is * {@link TAuflNeuBegruendung } * */ public void setAuflNeueLPEhefrau(TAuflNeuBegruendung value) { this.auflNeueLPEhefrau = value; } /** * Gets the value of the todEhemann property. * * @return * possible object is * {@link TTodPartner } * */ public TTodPartner getTodEhemann() { return todEhemann; } /** * Sets the value of the todEhemann property. * * @param value * allowed object is * {@link TTodPartner } * */ public void setTodEhemann(TTodPartner value) { this.todEhemann = value; } /** * Gets the value of the todesErklEhemann property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTodesErklEhemann() { return todesErklEhemann; } /** * Sets the value of the todesErklEhemann property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTodesErklEhemann(XMLGregorianCalendar value) { this.todesErklEhemann = value; } /** * Gets the value of the todesFestEhemann property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTodesFestEhemann() { return todesFestEhemann; } /** * Sets the value of the todesFestEhemann property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTodesFestEhemann(XMLGregorianCalendar value) { this.todesFestEhemann = value; } /** * Gets the value of the todesFestEhemannZeit property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTodesFestEhemannZeit() { return todesFestEhemannZeit; } /** * Sets the value of the todesFestEhemannZeit property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTodesFestEhemannZeit(XMLGregorianCalendar value) { this.todesFestEhemannZeit = value; } /** * Gets the value of the aufhTodesErklEhemann property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getAufhTodesErklEhemann() { return aufhTodesErklEhemann; } /** * Sets the value of the aufhTodesErklEhemann property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setAufhTodesErklEhemann(XMLGregorianCalendar value) { this.aufhTodesErklEhemann = value; } /** * Gets the value of the auflWiederverheiratungEhemann property. * * @return * possible object is * {@link TAuflNeuBegruendung } * */ public TAuflNeuBegruendung getAuflWiederverheiratungEhemann() { return auflWiederverheiratungEhemann; } /** * Sets the value of the auflWiederverheiratungEhemann property. * * @param value * allowed object is * {@link TAuflNeuBegruendung } * */ public void setAuflWiederverheiratungEhemann(TAuflNeuBegruendung value) { this.auflWiederverheiratungEhemann = value; } /** * Gets the value of the auflNeueLPEhemann property. * * @return * possible object is * {@link TAuflNeuBegruendung } * */ public TAuflNeuBegruendung getAuflNeueLPEhemann() { return auflNeueLPEhemann; } /** * Sets the value of the auflNeueLPEhemann property. * * @param value * allowed object is * {@link TAuflNeuBegruendung } * */ public void setAuflNeueLPEhemann(TAuflNeuBegruendung value) { this.auflNeueLPEhemann = value; } /** * Gets the value of the nameNachAuflEhefrau property. * * @return * possible object is * {@link TNamen } * */ public TNamen getNameNachAuflEhefrau() { return nameNachAuflEhefrau; } /** * Sets the value of the nameNachAuflEhefrau property. * * @param value * allowed object is * {@link TNamen } * */ public void setNameNachAuflEhefrau(TNamen value) { this.nameNachAuflEhefrau = value; } /** * Gets the value of the nameNachAuflEhemann property. * * @return * possible object is * {@link TNamen } * */ public TNamen getNameNachAuflEhemann() { return nameNachAuflEhemann; } /** * Sets the value of the nameNachAuflEhemann property. * * @param value * allowed object is * {@link TNamen } * */ public void setNameNachAuflEhemann(TNamen value) { this.nameNachAuflEhemann = value; } /** * Gets the value of the aenderungsInfo property. * * @return * possible object is * {@link TAenderungsInfo } * */ public TAenderungsInfo getAenderungsInfo() { return aenderungsInfo; } /** * Sets the value of the aenderungsInfo property. * * @param value * allowed object is * {@link TAenderungsInfo } * */ public void setAenderungsInfo(TAenderungsInfo value) { this.aenderungsInfo = value; } }