DetailLog.java
1.05 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
package th.co.ais.ssbsrfc.instance;
public class DetailLog {
private DetailLogDetail _projectName_ = null;
private String CurrentState = "";
private String NextState = "";
private long ProcessingTime = -1;
public DetailLog ()
{ }
public DetailLog(DetailLogDetail details, String currentState,
String nextState, long processingTime) {
super();
this._projectName_ = details;
CurrentState = currentState;
NextState = nextState;
ProcessingTime = processingTime;
}
public DetailLogDetail getDetail() {
return _projectName_;
}
public void setDetail(DetailLogDetail details) {
this._projectName_ = details;
}
public String getCurrentState() {
return CurrentState;
}
public void setCurrentState(String currentState) {
CurrentState = currentState;
}
public String getNextState() {
return NextState;
}
public void setNextState(String nextState) {
NextState = nextState;
}
public long getProcessingTime() {
return ProcessingTime;
}
public void setProcessingTime(long processingTime) {
ProcessingTime = processingTime;
}
}