package at.gv.util.xsd.ersb.basicTypes; 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for Taetigkeitszeitraum complex type. * *

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

 * <complexType name="Taetigkeitszeitraum">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="TaetigVon" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="TaetigBis" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Taetigkeitszeitraum", propOrder = { "taetigVon", "taetigBis" }) @XmlSeeAlso({ TaetigkeitszeitraumVollzug.class }) public abstract class Taetigkeitszeitraum { @XmlElement(name = "TaetigVon") @XmlSchemaType(name = "date") protected XMLGregorianCalendar taetigVon; @XmlElement(name = "TaetigBis") @XmlSchemaType(name = "date") protected XMLGregorianCalendar taetigBis; /** * Gets the value of the taetigVon property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTaetigVon() { return taetigVon; } /** * Sets the value of the taetigVon property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTaetigVon(XMLGregorianCalendar value) { this.taetigVon = value; } /** * Gets the value of the taetigBis property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTaetigBis() { return taetigBis; } /** * Sets the value of the taetigBis property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTaetigBis(XMLGregorianCalendar value) { this.taetigBis = value; } }