From 52f37f0f24af08aced6e4bdb94821e22ba391cae Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Tue, 2 Oct 2018 14:45:08 +0200 Subject: move eID4U module into eID4U git repo --- .../xjc/europass/ProficiencyLevelType.java | 181 --------------------- 1 file changed, 181 deletions(-) delete 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 deleted file mode 100644 index 4342c5848..000000000 --- a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ProficiencyLevelType.java +++ /dev/null @@ -1,181 +0,0 @@ -// -// 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 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.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