GLS ShipIT  2.8.11
GLS ShipIT - REST services
IdentPINService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
5 
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;
13 
14 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "IdentPINService", propOrder = {
40  "serviceName",
41  "pin",
42  "birthdate"
43 })
44 public class IdentPINService {
45 
46  @XmlElement(name = "ServiceName", required = true)
47  protected String serviceName;
48  @XmlElement(name = "PIN", required = true)
49  protected String pin;
50  @XmlElement(name = "Birthdate", type = String.class)
51  @XmlJavaTypeAdapter(Adapter2.class)
52  @XmlSchemaType(name = "date")
53  protected Date birthdate;
54 
63  public String getServiceName() {
64  return serviceName;
65  }
66 
75  public void setServiceName(String value) {
76  this.serviceName = value;
77  }
78 
87  public String getPIN() {
88  return pin;
89  }
90 
99  public void setPIN(String value) {
100  this.pin = value;
101  }
102 
111  public Date getBirthdate() {
112  return birthdate;
113  }
114 
123  public void setBirthdate(Date value) {
124  this.birthdate = value;
125  }
126 
127 }