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 --- .../xjc/europass/LinguisticExperienceType.java | 158 +++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/LinguisticExperienceType.java (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/LinguisticExperienceType.java') diff --git a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/LinguisticExperienceType.java b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/LinguisticExperienceType.java new file mode 100644 index 000000000..bfeed278d --- /dev/null +++ b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/LinguisticExperienceType.java @@ -0,0 +1,158 @@ +// +// 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.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + * + * Extends the generic ExperienceType to include information about an experience that results in acquiring linguistic skills. + * Contains information about the period the linguistic experience took place and the area/context into which it is acquiared. + * + * + *

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

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

+ * <complexType name="LinguisticExperienceType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Period" type="{http://europass.cedefop.europa.eu/Europass}PeriodType" minOccurs="0"/>
+ *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Documentation" type="{http://europass.cedefop.europa.eu/Europass}IntraDocumentDocumentationType" minOccurs="0"/>
+ *         <element name="Area" type="{http://europass.cedefop.europa.eu/Europass}LinguisticExperienceAreaType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LinguisticExperienceType", propOrder = { + "period", + "description", + "documentation", + "area" +}) +public class LinguisticExperienceType { + + @XmlElement(name = "Period") + protected PeriodType period; + @XmlElement(name = "Description") + protected String description; + @XmlElement(name = "Documentation") + protected IntraDocumentDocumentationType documentation; + @XmlElement(name = "Area") + protected LinguisticExperienceAreaType area; + + /** + * Ruft den Wert der period-Eigenschaft ab. + * + * @return + * possible object is + * {@link PeriodType } + * + */ + public PeriodType getPeriod() { + return period; + } + + /** + * Legt den Wert der period-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link PeriodType } + * + */ + public void setPeriod(PeriodType value) { + this.period = value; + } + + /** + * Ruft den Wert der description-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Legt den Wert der description-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Ruft den Wert der documentation-Eigenschaft ab. + * + * @return + * possible object is + * {@link IntraDocumentDocumentationType } + * + */ + public IntraDocumentDocumentationType getDocumentation() { + return documentation; + } + + /** + * Legt den Wert der documentation-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link IntraDocumentDocumentationType } + * + */ + public void setDocumentation(IntraDocumentDocumentationType value) { + this.documentation = value; + } + + /** + * Ruft den Wert der area-Eigenschaft ab. + * + * @return + * possible object is + * {@link LinguisticExperienceAreaType } + * + */ + public LinguisticExperienceAreaType getArea() { + return area; + } + + /** + * Legt den Wert der area-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link LinguisticExperienceAreaType } + * + */ + public void setArea(LinguisticExperienceAreaType value) { + this.area = value; + } + +} -- cgit v1.2.3