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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ wird für die Suche nach einem bestimmten Jahr oder auch nach einer Spanne von * Jahren verwendet. * * Die Angabe des Suchintervalls ist analog zu TZeitraumTag. * *

Java class for TZeitraumJahr complex type. * *

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

 * <complexType name="TZeitraumJahr">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="JahrVon" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
 *         <element name="JahrBis" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TZeitraumJahr", propOrder = { "jahrVon", "jahrBis" }) public class TZeitraumJahr { @XmlElement(name = "JahrVon") @XmlSchemaType(name = "gYear") protected XMLGregorianCalendar jahrVon; @XmlElement(name = "JahrBis") @XmlSchemaType(name = "gYear") protected XMLGregorianCalendar jahrBis; /** * Gets the value of the jahrVon property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getJahrVon() { return jahrVon; } /** * Sets the value of the jahrVon property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setJahrVon(XMLGregorianCalendar value) { this.jahrVon = value; } /** * Gets the value of the jahrBis property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getJahrBis() { return jahrBis; } /** * Sets the value of the jahrBis property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setJahrBis(XMLGregorianCalendar value) { this.jahrBis = value; } }