GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GLSExitCode.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "GLSExitCode", propOrder = {
32 "errorCode",
33 "errorDscr"
34})
35public 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}