package de.fh_giessen.epr.inhalt.v1; import java.util.ArrayList; import java.util.List; 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.XmlType; /** *

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="Person" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TVerstorbenePerson"/>
 *         <element name="Wohnung" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TWohnung" minOccurs="0"/>
 *         <element name="Tod" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TTod"/>
 *         <element name="Partner" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TSPartner" maxOccurs="unbounded" 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", "person", "wohnung", "tod", "partner", "aenderungsInfo" }) @XmlRootElement(name = "SUrkundlTeil") public class SUrkundlTeil { @XmlElement(name = "Beurkundung", required = true) protected TBeurkundung beurkundung; @XmlElement(name = "BeurkundungsAnlass") protected String beurkundungsAnlass; @XmlElement(name = "Person", required = true) protected TVerstorbenePerson person; @XmlElement(name = "Wohnung") protected TWohnung wohnung; @XmlElement(name = "Tod", required = true) protected TTod tod; @XmlElement(name = "Partner") protected List partner; @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 person property. * * @return * possible object is * {@link TVerstorbenePerson } * */ public TVerstorbenePerson getPerson() { return person; } /** * Sets the value of the person property. * * @param value * allowed object is * {@link TVerstorbenePerson } * */ public void setPerson(TVerstorbenePerson value) { this.person = value; } /** * Gets the value of the wohnung property. * * @return * possible object is * {@link TWohnung } * */ public TWohnung getWohnung() { return wohnung; } /** * Sets the value of the wohnung property. * * @param value * allowed object is * {@link TWohnung } * */ public void setWohnung(TWohnung value) { this.wohnung = value; } /** * Gets the value of the tod property. * * @return * possible object is * {@link TTod } * */ public TTod getTod() { return tod; } /** * Sets the value of the tod property. * * @param value * allowed object is * {@link TTod } * */ public void setTod(TTod value) { this.tod = value; } /** * Gets the value of the partner property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the partner property. * *

* For example, to add a new item, do as follows: *

     *    getPartner().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TSPartner } * * */ public List getPartner() { if (partner == null) { partner = new ArrayList(); } return this.partner; } /** * 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; } }