GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "GLSExitCode", propOrder = {
30  "errorCode",
31  "errorDscr"
32 })
33 public class GLSExitCode {
34 
35  @XmlElement(name = "ErrorCode")
36  protected int errorCode;
37  @XmlElement(name = "ErrorDscr", required = true)
38  protected String errorDscr;
39 
44  public int getErrorCode() {
45  return errorCode;
46  }
47 
52  public void setErrorCode(int value) {
53  this.errorCode = value;
54  }
55 
64  public String getErrorDscr() {
65  return errorDscr;
66  }
67 
76  public void setErrorDscr(String value) {
77  this.errorDscr = value;
78  }
79 
80 }