GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
IdentPINService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import java.util.Date;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlSchemaType;
9import javax.xml.bind.annotation.XmlType;
10import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11import org.w3._2001.xmlschema.Adapter3;
12
13
39@XmlAccessorType(XmlAccessType.FIELD)
40@XmlType(name = "IdentPINService", propOrder = {
41 "serviceName",
42 "pin",
43 "birthdate"
44})
45public 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(Adapter3 .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}