From c039de71dcc66c101a49c854ea1fd16e07bdb425 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Sun, 30 Sep 2018 16:17:33 +0200 Subject: rebuild eID4U JAXB classes --- .../impl/attributes/xjc/europass/DateType.java | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java') 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 new file mode 100644 index 000000000..64c93b2f1 --- /dev/null +++ b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/DateType.java @@ -0,0 +1,128 @@ +// +// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0-b170531.0717 generiert +// Siehe https://jaxb.java.net/ +// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. +// Generiert: 2018.09.30 um 04:14:23 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. + * + * + *

Java-Klasse für DateType complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType name="DateType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="day" type="{http://www.w3.org/2001/XMLSchema}gDay" />
+ *       <attribute name="month" type="{http://www.w3.org/2001/XMLSchema}gMonth" />
+ *       <attribute name="year" use="required" type="{http://www.w3.org/2001/XMLSchema}gYear" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@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; + } + +} -- cgit v1.2.3