2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
 
    5 import javax.xml.bind.annotation.XmlAccessType;
 
    6 import javax.xml.bind.annotation.XmlAccessorType;
 
    7 import javax.xml.bind.annotation.XmlElement;
 
    8 import javax.xml.bind.annotation.XmlSchemaType;
 
    9 import javax.xml.bind.annotation.XmlType;
 
   10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 
   11 import org.w3._2001.xmlschema.Adapter2;
 
   40 @XmlAccessorType(XmlAccessType.FIELD)
 
   41 @XmlType(name = 
"IdentService", propOrder = {
 
   50     @XmlElement(name = 
"ServiceName", required = 
true)
 
   51     protected String serviceName;
 
   52     @XmlElement(name = "Birthdate", required = true, type = String.class)
 
   54     @XmlSchemaType(name = "date")
 
   55     protected Date birthdate;
 
   56     @XmlElement(name = "Firstname", required = true)
 
   57     protected String firstname;
 
   58     @XmlElement(name = "Lastname", required = true)
 
   59     protected String lastname;
 
   61     protected Nationality nationality;
 
   71     public String getServiceName() {
 
   84         this.serviceName = value;
 
  108         this.birthdate = value;
 
  132         this.firstname = value;
 
  156         this.lastname = value;
 
  180         this.nationality = value;