Result.java 712 Bytes
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;
    }
}