-
Notifications
You must be signed in to change notification settings - Fork 2
/
ResponseCodeBO.java
executable file
·66 lines (62 loc) · 1.39 KB
/
ResponseCodeBO.java
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
package in.eko.service.model;
public class ResponseCodeBO {
Integer id;
String responseCode;
String description;
String detailedDescription;
String declineType;
int status;
int enquiryStatus;
private Integer source;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getResponseCode() {
return responseCode;
}
public void setResponseCode(String responseCode) {
this.responseCode = responseCode;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDetailedDescription() {
return detailedDescription;
}
public void setDetailedDescription(String detailedDescription) {
this.detailedDescription = detailedDescription;
}
public String getDeclineType() {
return declineType;
}
public void setDeclineType(String declineType) {
this.declineType = declineType;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public int getEnquiryStatus() {
return enquiryStatus;
}
public void setEnquiryStatus(int enquiryStatus) {
this.enquiryStatus = enquiryStatus;
}
public Integer getSource() {
return source;
}
public String getUniqueKey(){
return this.responseCode+"_"+this.source;
}
public void setSource(Integer source) {
this.source = source;
}
}