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 exakten Datumsangaben oder auch nach Zeiträumen verwendet. * * Soll nach einem bestimmten Tag gesucht werden, wird er im Subelement TagVon und * TagBis angegeben. * * Will man nach einem echten Zeitraum suchen, werden beide Subelemente mit den Grenzen * verwendet. Die Suche schließt die Grenzen jeweils ein. * * Wird eine Grenze weggelassen, bezieht sich die Suche auf das nach oben respektive unten offene * Intervall. * *

Java class for TZeitraumTag complex type. * *

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

 * <complexType name="TZeitraumTag">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="TagVon" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="TagBis" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TZeitraumTag", propOrder = { "tagVon", "tagBis" }) public class TZeitraumTag { @XmlElement(name = "TagVon") @XmlSchemaType(name = "date") protected XMLGregorianCalendar tagVon; @XmlElement(name = "TagBis") @XmlSchemaType(name = "date") protected XMLGregorianCalendar tagBis; /** * Gets the value of the tagVon property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTagVon() { return tagVon; } /** * Sets the value of the tagVon property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTagVon(XMLGregorianCalendar value) { this.tagVon = value; } /** * Gets the value of the tagBis property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTagBis() { return tagBis; } /** * Sets the value of the tagBis property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTagBis(XMLGregorianCalendar value) { this.tagBis = value; } }