GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
InsufficientPermissionFault.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import 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 }