com.github.ltsopensource.tasktracker.Result Maven / Gradle / Ivy
The newest version!
package com.github.ltsopensource.tasktracker;
import com.github.ltsopensource.core.domain.Action;
/**
* @author Robert HG ([email protected]) 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;
}
}