package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Informationen zu einem Eintrag bei der Suche im Ehe- oder Lebenspartnerschaftsregister. * *

Java class for TELEintragsInfo complex type. * *

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

 * <complexType name="TELEintragsInfo">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Container/v1}TEintragsInfo">
 *       <sequence>
 *         <element name="NamenVorP1" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
 *         <element name="NamenNachP1" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
 *         <element name="NamenVorP2" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
 *         <element name="NamenNachP2" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TELEintragsInfo", propOrder = { "namenVorP1", "namenNachP1", "namenVorP2", "namenNachP2" }) public class TELEintragsInfo extends TEintragsInfo { @XmlElement(name = "NamenVorP1") protected TNamensInfo namenVorP1; @XmlElement(name = "NamenNachP1") protected TNamensInfo namenNachP1; @XmlElement(name = "NamenVorP2") protected TNamensInfo namenVorP2; @XmlElement(name = "NamenNachP2") protected TNamensInfo namenNachP2; /** * Gets the value of the namenVorP1 property. * * @return * possible object is * {@link TNamensInfo } * */ public TNamensInfo getNamenVorP1() { return namenVorP1; } /** * Sets the value of the namenVorP1 property. * * @param value * allowed object is * {@link TNamensInfo } * */ public void setNamenVorP1(TNamensInfo value) { this.namenVorP1 = value; } /** * Gets the value of the namenNachP1 property. * * @return * possible object is * {@link TNamensInfo } * */ public TNamensInfo getNamenNachP1() { return namenNachP1; } /** * Sets the value of the namenNachP1 property. * * @param value * allowed object is * {@link TNamensInfo } * */ public void setNamenNachP1(TNamensInfo value) { this.namenNachP1 = value; } /** * Gets the value of the namenVorP2 property. * * @return * possible object is * {@link TNamensInfo } * */ public TNamensInfo getNamenVorP2() { return namenVorP2; } /** * Sets the value of the namenVorP2 property. * * @param value * allowed object is * {@link TNamensInfo } * */ public void setNamenVorP2(TNamensInfo value) { this.namenVorP2 = value; } /** * Gets the value of the namenNachP2 property. * * @return * possible object is * {@link TNamensInfo } * */ public TNamensInfo getNamenNachP2() { return namenNachP2; } /** * Sets the value of the namenNachP2 property. * * @param value * allowed object is * {@link TNamensInfo } * */ public void setNamenNachP2(TNamensInfo value) { this.namenNachP2 = value; } }