Result.java
712 Bytes
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
package com.github.ltsopensource.tasktracker;
import com.github.ltsopensource.core.domain.Action;
/**
* @author Robert HG (254963746@qq.com) on 6/12/15.
*/
public class Result {
private Action action;
private String msg;
public Result() {
}
public Result(Action action, String msg) {
this.action = action;
this.msg = msg;
}
public Result(Action action) {
this.action = action;
}
public Action getAction() {
return action;
}
public void setAction(Action action) {
this.action = action;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}