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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Eindeutige Identifizierung eines Registereintrags. * * Zu den Angaben des Jahrgangs des Registers kommt die EintragsNummer hinzu. * * Eine EintragsId hat also folgende Bestanteile: * * Standesamtnummer * Art des Registers * Jahr * Eintragsnummer * *

Java class for TEintragsId complex type. * *

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

 * <complexType name="TEintragsId">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Container/v1}TRegisterJahrId">
 *       <sequence>
 *         <element name="EintragsNummer" type="{http://www.fh-giessen.de/epr/Container/v1}TEintragsNummer"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEintragsId", propOrder = { "eintragsNummer" }) @XmlSeeAlso({ TUrkundlTeilId.class, THinweisTeilId.class }) public class TEintragsId extends TRegisterJahrId { @XmlElement(name = "EintragsNummer", required = true) protected String eintragsNummer; /** * Gets the value of the eintragsNummer property. * * @return * possible object is * {@link String } * */ public String getEintragsNummer() { return eintragsNummer; } /** * Sets the value of the eintragsNummer property. * * @param value * allowed object is * {@link String } * */ public void setEintragsNummer(String value) { this.eintragsNummer = value; } }