GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GLSUserCredentials.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "GLSUserCredentials", propOrder = {
32 "userName",
33 "password"
34})
35public class GLSUserCredentials {
36
37 @XmlElement(name = "UserName", required = true)
38 protected String userName;
39 @XmlElement(name = "Password", required = true)
40 protected String password;
41
50 public String getUserName() {
51 return userName;
52 }
53
62 public void setUserName(String value) {
63 this.userName = value;
64 }
65
74 public String getPassword() {
75 return password;
76 }
77
86 public void setPassword(String value) {
87 this.password = value;
88 }
89
90}