GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "", propOrder = {
31  "customer",
32  "user"
33 })
34 @XmlRootElement(name = "InsufficientPermissionFault")
36 
37  @XmlElement(required = true)
38  protected String customer;
39  @XmlElement(required = true)
40  protected String user;
41 
50  public String getCustomer() {
51  return customer;
52  }
53 
62  public void setCustomer(String value) {
63  this.customer = value;
64  }
65 
74  public String getUser() {
75  return user;
76  }
77 
86  public void setUser(String value) {
87  this.user = value;
88  }
89 
90 }