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/ProficiencyLevelType.java | 181 +++++++++++++++++++++ 1 file changed, 181 insertions(+) create mode 100644 id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ProficiencyLevelType.java (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ProficiencyLevelType.java') diff --git a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ProficiencyLevelType.java b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ProficiencyLevelType.java new file mode 100644 index 000000000..261ab2272 --- /dev/null +++ b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ProficiencyLevelType.java @@ -0,0 +1,181 @@ +// +// 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; + + +/** + *

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

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

+ * <complexType name="ProficiencyLevelType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Listening" type="{http://europass.cedefop.europa.eu/Europass}CEFLanguageLevelType" minOccurs="0"/>
+ *         <element name="Reading" type="{http://europass.cedefop.europa.eu/Europass}CEFLanguageLevelType" minOccurs="0"/>
+ *         <element name="SpokenInteraction" type="{http://europass.cedefop.europa.eu/Europass}CEFLanguageLevelType" minOccurs="0"/>
+ *         <element name="SpokenProduction" type="{http://europass.cedefop.europa.eu/Europass}CEFLanguageLevelType" minOccurs="0"/>
+ *         <element name="Writing" type="{http://europass.cedefop.europa.eu/Europass}CEFLanguageLevelType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProficiencyLevelType", propOrder = { + "listening", + "reading", + "spokenInteraction", + "spokenProduction", + "writing" +}) +public class ProficiencyLevelType { + + @XmlElement(name = "Listening") + protected String listening; + @XmlElement(name = "Reading") + protected String reading; + @XmlElement(name = "SpokenInteraction") + protected String spokenInteraction; + @XmlElement(name = "SpokenProduction") + protected String spokenProduction; + @XmlElement(name = "Writing") + protected String writing; + + /** + * Ruft den Wert der listening-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getListening() { + return listening; + } + + /** + * Legt den Wert der listening-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setListening(String value) { + this.listening = value; + } + + /** + * Ruft den Wert der reading-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReading() { + return reading; + } + + /** + * Legt den Wert der reading-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReading(String value) { + this.reading = value; + } + + /** + * Ruft den Wert der spokenInteraction-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpokenInteraction() { + return spokenInteraction; + } + + /** + * Legt den Wert der spokenInteraction-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpokenInteraction(String value) { + this.spokenInteraction = value; + } + + /** + * Ruft den Wert der spokenProduction-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpokenProduction() { + return spokenProduction; + } + + /** + * Legt den Wert der spokenProduction-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpokenProduction(String value) { + this.spokenProduction = value; + } + + /** + * Ruft den Wert der writing-Eigenschaft ab. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWriting() { + return writing; + } + + /** + * Legt den Wert der writing-Eigenschaft fest. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWriting(String value) { + this.writing = value; + } + +} -- cgit v1.2.3