2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
     6 import javax.xml.bind.annotation.XmlAccessType;
     7 import javax.xml.bind.annotation.XmlAccessorType;
     8 import javax.xml.bind.annotation.XmlElement;
     9 import javax.xml.bind.annotation.XmlSchemaType;
    10 import javax.xml.bind.annotation.XmlType;
    11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
    12 import java.util.Date;
    38 @XmlAccessorType(XmlAccessType.FIELD)
    39 @XmlType(name = 
"IdentPINService", propOrder = {
    46     @XmlElement(name = 
"ServiceName", required = 
true)
    47     protected String serviceName;
    48     @XmlElement(name = "PIN", required = true)
    50     @XmlElement(name = "Birthdate", type = String.class)
    52     @XmlSchemaType(name = "date")
    53     protected Date birthdate;
    63     public String getServiceName() {
    76         this.serviceName = value;
   124         this.birthdate = value;
 
void setPIN(String value)
 
void setBirthdate(Date value)
 
void setServiceName(String value)