ResIns.java
1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package th.co.ais.ssbsrfc.instance;
import th.co.ais.ssbsrfc.message.MessageParser;
import th.co.ais.ssbsrfc.utils.Global;
import com.google.gson.Gson;
import ec02.utils.AppLog;
public class ResIns
{
private String method = null;
private String resultCode = "";
private String resultDescription = "";
private String command = null;
public ResIns () {}
public ResIns(String resultCode, String resultDescription) {
super();
this.resultCode = resultCode;
this.resultDescription = resultDescription;
}
public ResIns (String code, String desc, String cmd) {
this.resultCode = code;
this.resultDescription = desc;
this.command = cmd;
}
public ResIns(String strJson) {
try {
Gson gson = new Gson();
ResIns ins = gson.fromJson(strJson, ResIns.class);
this.resultCode = ins.getResultCode();
this.resultDescription = ins.getResultDescription();
if (ins.getCommand() != null) {
this.command = ins.getCommand();
}
} catch (Exception e) {
AppLog.e("## EXCEPTION :" + e.getMessage());
}
}
@Override
public String toString() {
return Global.unescapePrintString(MessageParser.toJson(this));
}
public String getResultCode() {
return resultCode;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getResultDescription() {
return resultDescription;
}
public void setResultDescription(String resultDescription) {
this.resultDescription = resultDescription;
}
public String getCommand() {
return command;
}
public void setCommand(String command) {
this.command = command;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
}