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 --- .../impl/attributes/xjc/europass/SkillType.java | 192 --------------------- 1 file changed, 192 deletions(-) delete mode 100644 id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/SkillType.java (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/SkillType.java') diff --git a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/SkillType.java b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/SkillType.java deleted file mode 100644 index 47ba3b0a8..000000000 --- a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/SkillType.java +++ /dev/null @@ -1,192 +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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * Defines a skill. A Skill has a description and may be accompanied by sutiable documentation. - * Morever a Skill may be acquired during one or more experience periods, and be verified by one or more certificates - * - * - *

Java-Klasse für SkillType complex type. - * - *

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

- * <complexType name="SkillType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="ProficiencyLevel" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *         <element name="AcquiredDuring" type="{http://europass.cedefop.europa.eu/Europass}AbstractExperienceListType" minOccurs="0"/>
- *         <element name="VerifiedBy" type="{http://europass.cedefop.europa.eu/Europass}CertificateListType" minOccurs="0"/>
- *         <element name="Documentation" type="{http://europass.cedefop.europa.eu/Europass}IntraDocumentDocumentationType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SkillType", propOrder = { - "description", - "proficiencyLevel", - "acquiredDuring", - "verifiedBy", - "documentation" -}) -@XmlSeeAlso({ - GenericSkillType.class, - MotherTongueSkillType.class, - ForeignLanguageSkillType.class -}) -public abstract class SkillType { - - @XmlElement(name = "Description") - protected Object description; - @XmlElement(name = "ProficiencyLevel") - protected Object proficiencyLevel; - @XmlElement(name = "AcquiredDuring") - protected AbstractExperienceListType acquiredDuring; - @XmlElement(name = "VerifiedBy") - protected CertificateListType verifiedBy; - @XmlElement(name = "Documentation") - protected IntraDocumentDocumentationType documentation; - - /** - * Ruft den Wert der description-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getDescription() { - return description; - } - - /** - * Legt den Wert der description-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setDescription(Object value) { - this.description = value; - } - - /** - * Ruft den Wert der proficiencyLevel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getProficiencyLevel() { - return proficiencyLevel; - } - - /** - * Legt den Wert der proficiencyLevel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setProficiencyLevel(Object value) { - this.proficiencyLevel = value; - } - - /** - * Ruft den Wert der acquiredDuring-Eigenschaft ab. - * - * @return - * possible object is - * {@link AbstractExperienceListType } - * - */ - public AbstractExperienceListType getAcquiredDuring() { - return acquiredDuring; - } - - /** - * Legt den Wert der acquiredDuring-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AbstractExperienceListType } - * - */ - public void setAcquiredDuring(AbstractExperienceListType value) { - this.acquiredDuring = value; - } - - /** - * Ruft den Wert der verifiedBy-Eigenschaft ab. - * - * @return - * possible object is - * {@link CertificateListType } - * - */ - public CertificateListType getVerifiedBy() { - return verifiedBy; - } - - /** - * Legt den Wert der verifiedBy-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CertificateListType } - * - */ - public void setVerifiedBy(CertificateListType value) { - this.verifiedBy = 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; - } - -} -- cgit v1.2.3