aboutsummaryrefslogtreecommitdiff
path: root/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java')
-rw-r--r--id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java128
1 files changed, 0 insertions, 128 deletions
diff --git a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java
deleted file mode 100644
index e38c925f5..000000000
--- a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java
+++ /dev/null
@@ -1,128 +0,0 @@
-//
-// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0-b170531.0717 generiert
-// Siehe <a href="https://jaxb.java.net/">https://jaxb.java.net/</a>
-// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
-// Generiert: 2018.09.30 um 08:08:27 PM CEST
-//
-
-
-package at.gv.egiz.eid4u.impl.attributes.xjc.europass;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-
-
-/**
- *
- * Defines date information, which consists of day, month and year.The date must include at least the year attribute.
- *
- *
- * <p>Java-Klasse für DateType complex type.
- *
- * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- * <pre>
- * &lt;complexType name="DateType"&gt;
- * &lt;complexContent&gt;
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
- * &lt;attribute name="day" type="{http://www.w3.org/2001/XMLSchema}gDay" /&gt;
- * &lt;attribute name="month" type="{http://www.w3.org/2001/XMLSchema}gMonth" /&gt;
- * &lt;attribute name="year" use="required" type="{http://www.w3.org/2001/XMLSchema}gYear" /&gt;
- * &lt;/restriction&gt;
- * &lt;/complexContent&gt;
- * &lt;/complexType&gt;
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DateType")
-public class DateType {
-
- @XmlAttribute(name = "day")
- @XmlSchemaType(name = "gDay")
- protected XMLGregorianCalendar day;
- @XmlAttribute(name = "month")
- @XmlSchemaType(name = "gMonth")
- protected XMLGregorianCalendar month;
- @XmlAttribute(name = "year", required = true)
- @XmlSchemaType(name = "gYear")
- protected XMLGregorianCalendar year;
-
- /**
- * Ruft den Wert der day-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getDay() {
- return day;
- }
-
- /**
- * Legt den Wert der day-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setDay(XMLGregorianCalendar value) {
- this.day = value;
- }
-
- /**
- * Ruft den Wert der month-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getMonth() {
- return month;
- }
-
- /**
- * Legt den Wert der month-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setMonth(XMLGregorianCalendar value) {
- this.month = value;
- }
-
- /**
- * Ruft den Wert der year-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getYear() {
- return year;
- }
-
- /**
- * Legt den Wert der year-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setYear(XMLGregorianCalendar value) {
- this.year = value;
- }
-
-}