GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GLSExitCode.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
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.XmlType;
8 
9 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "GLSExitCode", propOrder = {
32  "errorCode",
33  "errorDscr"
34 })
35 public class GLSExitCode {
36 
37  @XmlElement(name = "ErrorCode")
38  protected int errorCode;
39  @XmlElement(name = "ErrorDscr", required = true)
40  protected String errorDscr;
41 
46  public int getErrorCode() {
47  return errorCode;
48  }
49 
54  public void setErrorCode(int value) {
55  this.errorCode = value;
56  }
57 
66  public String getErrorDscr() {
67  return errorDscr;
68  }
69 
78  public void setErrorDscr(String value) {
79  this.errorDscr = value;
80  }
81 
82 }