// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.04.12 at 12:22:50 PM GMT // package eu.stork.peps.complex.attributes.crue.academic.xsd.language.diplomasupplement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Qualification * *

* Java class for QualificationType complex type. * *

* The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="QualificationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Name" type="{urn:crue:academic:xsd:language:diplomasupplement}PlainTextType"/>
 *         <element name="AdditionalInformation" type="{urn:crue:academic:xsd:language:diplomasupplement}RichTextTagType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="localID" type="{urn:crue:academic:xsd:language:diplomasupplement}PlainTextType" />
 *       <attribute name="nationalID" type="{urn:crue:academic:xsd:language:diplomasupplement}PlainTextType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QualificationType", propOrder = { "name", "additionalInformation" }) public class QualificationType { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "AdditionalInformation") protected RichTextTagType additionalInformation; @XmlAttribute(name = "localID") protected String localID; @XmlAttribute(name = "nationalID") protected String nationalID; /** * Gets the value of the name property. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the additionalInformation property. * * @return possible object is {@link RichTextTagType } * */ public RichTextTagType getAdditionalInformation() { return additionalInformation; } /** * Sets the value of the additionalInformation property. * * @param value * allowed object is {@link RichTextTagType } * */ public void setAdditionalInformation(RichTextTagType value) { this.additionalInformation = value; } /** * Gets the value of the localID property. * * @return possible object is {@link String } * */ public String getLocalID() { return localID; } /** * Sets the value of the localID property. * * @param value * allowed object is {@link String } * */ public void setLocalID(String value) { this.localID = value; } /** * Gets the value of the nationalID property. * * @return possible object is {@link String } * */ public String getNationalID() { return nationalID; } /** * Sets the value of the nationalID property. * * @param value * allowed object is {@link String } * */ public void setNationalID(String value) { this.nationalID = value; } }