// // 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; import javax.xml.bind.annotation.XmlValue; import javax.xml.datatype.XMLGregorianCalendar; /** * Information identifying the holder of the qualification * *

Java class for InformationIdentifyingTheHolderOfTheQualificationType complex type. * *

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

 * <complexType name="InformationIdentifyingTheHolderOfTheQualificationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="FamilyName" type="{urn:crue:academic:xsd:language:diplomasupplement}FamilyNameType"/>
 *         <element name="GivenName" type="{urn:crue:academic:xsd:language:diplomasupplement}GivenNameType"/>
 *         <element name="DateOfBirth" type="{urn:crue:academic:xsd:language:diplomasupplement}DateType"/>
 *         <element name="StudentIdentificationNumber" type="{urn:crue:academic:xsd:language:diplomasupplement}PlainTextType" minOccurs="0"/>
 *         <element name="CountryOfBirth" minOccurs="0">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
 *                 <attribute name="country" type="{urn:crue:academic:xsd:language:diplomasupplement}CountryType" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *         <element name="PlaceOfBirth" type="{urn:crue:academic:xsd:language:diplomasupplement}PlainTextType" minOccurs="0"/>
 *         <element name="Gender" minOccurs="0">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
 *                 <attribute name="gender" use="required" type="{urn:crue:academic:xsd:language:diplomasupplement}GenderType" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InformationIdentifyingTheHolderOfTheQualificationType", propOrder = { "familyName", "givenName", "dateOfBirth", "studentIdentificationNumber", "countryOfBirth", "placeOfBirth", "gender" }) public class InformationIdentifyingTheHolderOfTheQualificationType { @XmlElement(name = "FamilyName", required = true) protected FamilyNameType familyName; @XmlElement(name = "GivenName", required = true) protected GivenNameType givenName; @XmlElement(name = "DateOfBirth", required = true) protected XMLGregorianCalendar dateOfBirth; @XmlElement(name = "StudentIdentificationNumber") protected String studentIdentificationNumber; @XmlElement(name = "CountryOfBirth") protected InformationIdentifyingTheHolderOfTheQualificationType.CountryOfBirth countryOfBirth; @XmlElement(name = "PlaceOfBirth") protected String placeOfBirth; @XmlElement(name = "Gender") protected InformationIdentifyingTheHolderOfTheQualificationType.Gender gender; /** * Gets the value of the familyName property. * * @return * possible object is * {@link FamilyNameType } * */ public FamilyNameType getFamilyName() { return familyName; } /** * Sets the value of the familyName property. * * @param value * allowed object is * {@link FamilyNameType } * */ public void setFamilyName(FamilyNameType value) { this.familyName = value; } /** * Gets the value of the givenName property. * * @return * possible object is * {@link GivenNameType } * */ public GivenNameType getGivenName() { return givenName; } /** * Sets the value of the givenName property. * * @param value * allowed object is * {@link GivenNameType } * */ public void setGivenName(GivenNameType value) { this.givenName = value; } /** * Gets the value of the dateOfBirth property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateOfBirth() { return dateOfBirth; } /** * Sets the value of the dateOfBirth property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateOfBirth(XMLGregorianCalendar value) { this.dateOfBirth = value; } /** * Gets the value of the studentIdentificationNumber property. * * @return * possible object is * {@link String } * */ public String getStudentIdentificationNumber() { return studentIdentificationNumber; } /** * Sets the value of the studentIdentificationNumber property. * * @param value * allowed object is * {@link String } * */ public void setStudentIdentificationNumber(String value) { this.studentIdentificationNumber = value; } /** * Gets the value of the countryOfBirth property. * * @return * possible object is * {@link InformationIdentifyingTheHolderOfTheQualificationType.CountryOfBirth } * */ public InformationIdentifyingTheHolderOfTheQualificationType.CountryOfBirth getCountryOfBirth() { return countryOfBirth; } /** * Sets the value of the countryOfBirth property. * * @param value * allowed object is * {@link InformationIdentifyingTheHolderOfTheQualificationType.CountryOfBirth } * */ public void setCountryOfBirth(InformationIdentifyingTheHolderOfTheQualificationType.CountryOfBirth value) { this.countryOfBirth = value; } /** * Gets the value of the placeOfBirth property. * * @return * possible object is * {@link String } * */ public String getPlaceOfBirth() { return placeOfBirth; } /** * Sets the value of the placeOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setPlaceOfBirth(String value) { this.placeOfBirth = value; } /** * Gets the value of the gender property. * * @return * possible object is * {@link InformationIdentifyingTheHolderOfTheQualificationType.Gender } * */ public InformationIdentifyingTheHolderOfTheQualificationType.Gender getGender() { return gender; } /** * Sets the value of the gender property. * * @param value * allowed object is * {@link InformationIdentifyingTheHolderOfTheQualificationType.Gender } * */ public void setGender(InformationIdentifyingTheHolderOfTheQualificationType.Gender value) { this.gender = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <simpleContent>
     *     <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
     *       <attribute name="country" type="{urn:crue:academic:xsd:language:diplomasupplement}CountryType" />
     *     </extension>
     *   </simpleContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class CountryOfBirth { @XmlValue protected String value; @XmlAttribute(name = "country") protected CountryType country; /** * Plain text constraint * * Non empty text * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link CountryType } * */ public CountryType getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link CountryType } * */ public void setCountry(CountryType value) { this.country = value; } } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <simpleContent>
     *     <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
     *       <attribute name="gender" use="required" type="{urn:crue:academic:xsd:language:diplomasupplement}GenderType" />
     *     </extension>
     *   </simpleContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Gender { @XmlValue protected String value; @XmlAttribute(name = "gender", required = true) protected GenderType gender; /** * Plain text constraint * * Non empty text * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the gender property. * * @return * possible object is * {@link GenderType } * */ public GenderType getGender() { return gender; } /** * Sets the value of the gender property. * * @param value * allowed object is * {@link GenderType } * */ public void setGender(GenderType value) { this.gender = value; } } }