GLS ShipIT
GLS ShipIT - SOAP services
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;
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 }
eu.glsgroup.fpcs.datatypes.soap.v1.common.IdentPINService.setPIN
void setPIN(String value)
Definition: IdentPINService.java:100
eu.glsgroup.fpcs.datatypes.soap.v1.common.IdentPINService
Definition: IdentPINService.java:45
org.w3._2001
org.w3
eu.glsgroup.fpcs.datatypes.soap.v1.common.IdentPINService.getPIN
String getPIN()
Definition: IdentPINService.java:88
eu.glsgroup.fpcs.datatypes.soap.v1.common.IdentPINService.getBirthdate
Date getBirthdate()
Definition: IdentPINService.java:112
org.w3._2001.xmlschema.Adapter2
Definition: Adapter2.java:9
eu.glsgroup.fpcs.datatypes.soap.v1.common.IdentPINService.setBirthdate
void setBirthdate(Date value)
Definition: IdentPINService.java:124
org
eu.glsgroup.fpcs.datatypes.soap.v1.common.IdentPINService.setServiceName
void setServiceName(String value)
Definition: IdentPINService.java:76
org.w3._2001.xmlschema
Definition: Adapter1.java:2