package de.fh_giessen.epr.container.v1; import java.math.BigInteger; 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; /** * Ein Registereintrag enthält urkundliche Teile und Hinweisteile, wie sie von der Erstbeurkundung * über Folgebeurkundungen und Änderungen der Hinweise entstanden sind. Der Typ * TEintragsUebersichtZeile enthält die Angaben zu einem bestimmten Stand des Registereintrags * für die Eintragsübersicht, siehe . * *

Java class for TEintragsUebersichtZeile complex type. * *

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

 * <complexType name="TEintragsUebersichtZeile">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ErstellungsZeitpunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="ErstellungsAnlass" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
 *         <element name="ErstellerName" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
 *         <element name="ErstellerVornamen" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="FolgeNummer" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
 *         <element name="HinweisFolgeNummer" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEintragsUebersichtZeile", propOrder = { "erstellungsZeitpunkt", "erstellungsAnlass", "erstellerName", "erstellerVornamen", "folgeNummer", "hinweisFolgeNummer" }) public class TEintragsUebersichtZeile { @XmlElement(name = "ErstellungsZeitpunkt", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar erstellungsZeitpunkt; @XmlElement(name = "ErstellungsAnlass", required = true) protected String erstellungsAnlass; @XmlElement(name = "ErstellerName", required = true) protected String erstellerName; @XmlElement(name = "ErstellerVornamen") protected String erstellerVornamen; @XmlElement(name = "FolgeNummer", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger folgeNummer; @XmlElement(name = "HinweisFolgeNummer", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger hinweisFolgeNummer; /** * Gets the value of the erstellungsZeitpunkt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getErstellungsZeitpunkt() { return erstellungsZeitpunkt; } /** * Sets the value of the erstellungsZeitpunkt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setErstellungsZeitpunkt(XMLGregorianCalendar value) { this.erstellungsZeitpunkt = value; } /** * Gets the value of the erstellungsAnlass property. * * @return * possible object is * {@link String } * */ public String getErstellungsAnlass() { return erstellungsAnlass; } /** * Sets the value of the erstellungsAnlass property. * * @param value * allowed object is * {@link String } * */ public void setErstellungsAnlass(String value) { this.erstellungsAnlass = value; } /** * Gets the value of the erstellerName property. * * @return * possible object is * {@link String } * */ public String getErstellerName() { return erstellerName; } /** * Sets the value of the erstellerName property. * * @param value * allowed object is * {@link String } * */ public void setErstellerName(String value) { this.erstellerName = value; } /** * Gets the value of the erstellerVornamen property. * * @return * possible object is * {@link String } * */ public String getErstellerVornamen() { return erstellerVornamen; } /** * Sets the value of the erstellerVornamen property. * * @param value * allowed object is * {@link String } * */ public void setErstellerVornamen(String value) { this.erstellerVornamen = value; } /** * Gets the value of the folgeNummer property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFolgeNummer() { return folgeNummer; } /** * Sets the value of the folgeNummer property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFolgeNummer(BigInteger value) { this.folgeNummer = value; } /** * Gets the value of the hinweisFolgeNummer property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getHinweisFolgeNummer() { return hinweisFolgeNummer; } /** * Sets the value of the hinweisFolgeNummer property. * * @param value * allowed object is * {@link BigInteger } * */ public void setHinweisFolgeNummer(BigInteger value) { this.hinweisFolgeNummer = value; } }