GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
IdentPINService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import java.util.Date;
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;
12 
13 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "IdentPINService", propOrder = {
41  "serviceName",
42  "pin",
43  "birthdate"
44 })
45 public class IdentPINService {
46 
47  @XmlElement(name = "ServiceName", required = true)
48  protected String serviceName;
49  @XmlElement(name = "PIN", required = true)
50  protected String pin;
51  @XmlElement(name = "Birthdate", type = String.class)
52  @XmlJavaTypeAdapter(Adapter2 .class)
53  @XmlSchemaType(name = "date")
54  protected Date birthdate;
55 
64  public String getServiceName() {
65  return serviceName;
66  }
67 
76  public void setServiceName(String value) {
77  this.serviceName = value;
78  }
79 
88  public String getPIN() {
89  return pin;
90  }
91 
100  public void setPIN(String value) {
101  this.pin = value;
102  }
103 
112  public Date getBirthdate() {
113  return birthdate;
114  }
115 
124  public void setBirthdate(Date value) {
125  this.birthdate = value;
126  }
127 
128 }