FMInstance.java
1.45 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
package th.co.ais.ssbsrfc.instance;
public class FMInstance {
private int flow = 0;
private String date = null;
private String data = null;
private String dialogueId = null;
private String unique = null;
@Override
public String toString() {
return "## PARAMETERS: {\tflow=" + flow + ", \tdate=" + date
+ ", \tdata=" + data + ", \tdialogueId=" + dialogueId
+ ", \tunique=" + unique + "}";
}
public FMInstance() {
super();
}
public FMInstance(int flow) {
super();
this.flow = flow;
}
public FMInstance(int flow, String date) {
super();
this.flow = flow;
this.date = date;
}
public FMInstance(int flow, String date, String data) {
super();
this.flow = flow;
this.date = date;
this.data = data;
}
public FMInstance(int flow, String date, String data, String dialogueId) {
super();
this.flow = flow;
this.date = date;
this.data = data;
this.dialogueId = dialogueId;
}
public int getFlow() {
return flow;
}
public void setFlow(int flow) {
this.flow = flow;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public String getDialogueId() {
return dialogueId;
}
public void setDialogueId(String dialogueId) {
this.dialogueId = dialogueId;
}
public String getUnique() {
return unique;
}
public void setUnique(String unique) {
this.unique = unique;
}
}