aboutsummaryrefslogtreecommitdiff
path: root/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ExperienceType.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ExperienceType.java')
-rw-r--r--id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ExperienceType.java129
1 files changed, 129 insertions, 0 deletions
diff --git a/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ExperienceType.java b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ExperienceType.java
new file mode 100644
index 000000000..9dad2e726
--- /dev/null
+++ b/id/server/modules/eID4UExtensions/src/main/java/at/gv/egiz/eid4u/impl/attributes/xjc/europass/ExperienceType.java
@@ -0,0 +1,129 @@
+//
+// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0-b170531.0717 generiert
+// Siehe <a href="https://jaxb.java.net/">https://jaxb.java.net/</a>
+// Ä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;
+
+
+/**
+ *
+ * Defines the information describing an Experience. An Experience contains information about the period the experience took place and a free text description of the experience.
+ *
+ *
+ * <p>Java-Klasse für ExperienceType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="ExperienceType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="Period" type="{http://europass.cedefop.europa.eu/Europass}PeriodType" minOccurs="0"/&gt;
+ * &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
+ * &lt;element name="Documentation" type="{http://europass.cedefop.europa.eu/Europass}IntraDocumentDocumentationType" minOccurs="0"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ExperienceType", propOrder = {
+ "period",
+ "description",
+ "documentation"
+})
+public class ExperienceType {
+
+ @XmlElement(name = "Period")
+ protected PeriodType period;
+ @XmlElement(name = "Description")
+ protected String description;
+ @XmlElement(name = "Documentation")
+ protected IntraDocumentDocumentationType documentation;
+
+ /**
+ * 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;
+ }
+
+}