GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
IdentService.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
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name = "IdentService", propOrder = {
42 "serviceName",
43 "birthdate",
44 "firstname",
45 "lastname",
46 "nationality"
47})
48public class IdentService {
49
50 @XmlElement(name = "ServiceName", required = true)
51 protected String serviceName;
52 @XmlElement(name = "Birthdate", required = true, type = String.class)
53 @XmlJavaTypeAdapter(Adapter3 .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;
60 @XmlElement(name = "Nationality", required = true)
61 protected Nationality nationality;
62
71 public String getServiceName() {
72 return serviceName;
73 }
74
83 public void setServiceName(String value) {
84 this.serviceName = value;
85 }
86
95 public Date getBirthdate() {
96 return birthdate;
97 }
98
107 public void setBirthdate(Date value) {
108 this.birthdate = value;
109 }
110
119 public String getFirstname() {
120 return firstname;
121 }
122
131 public void setFirstname(String value) {
132 this.firstname = value;
133 }
134
143 public String getLastname() {
144 return lastname;
145 }
146
155 public void setLastname(String value) {
156 this.lastname = value;
157 }
158
168 return nationality;
169 }
170
179 public void setNationality(Nationality value) {
180 this.nationality = value;
181 }
182
183}