GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
InsufficientPermissionFault.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlRootElement;
8import javax.xml.bind.annotation.XmlType;
9
10
31@XmlAccessorType(XmlAccessType.FIELD)
32@XmlType(name = "", propOrder = {
33 "customer",
34 "user"
35})
36@XmlRootElement(name = "InsufficientPermissionFault")
38
39 @XmlElement(required = true)
40 protected String customer;
41 @XmlElement(required = true)
42 protected String user;
43
52 public String getCustomer() {
53 return customer;
54 }
55
64 public void setCustomer(String value) {
65 this.customer = value;
66 }
67
76 public String getUser() {
77 return user;
78 }
79
88 public void setUser(String value) {
89 this.user = value;
90 }
91
92}