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 zur Auflösung der Ehe durch Wiederverheiratung oder die Angaben zu einer neuen Lebenspartnerschaft. * *

Java class for TAuflNeuBegruendung complex type. * *

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

 * <complexType name="TAuflNeuBegruendung">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Tag" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="Ort" 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 = "TAuflNeuBegruendung", propOrder = { "tag", "ort", "land" }) public class TAuflNeuBegruendung { @XmlElement(name = "Tag") @XmlSchemaType(name = "date") protected XMLGregorianCalendar tag; @XmlElement(name = "Ort") protected String ort; @XmlElement(name = "Land") protected String land; /** * Gets the value of the tag property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTag() { return tag; } /** * Sets the value of the tag property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTag(XMLGregorianCalendar 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 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; } }