wuxw
2019-04-25 d4e1929dcab147030d3bcae89b1801250fd6a5da
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
package com.java110.event.center.event;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.core.context.IOrderDataFlowContext;
import com.java110.core.context.OrderDataFlow;
import com.java110.entity.order.Business;
 
/**
 * 调用业务系统事件
 * Created by wuxw on 2018/7/2.
 */
public class InvokeBusinessBSuccessEvent extends DataFlowEvent {
 
    private Business business;
 
    /**
     * 业务系统返回数据
     */
    private JSONObject businessResponseData;
 
 
    /**
     * Constructs a prototypical Event.
     *
     * @param source   The object on which the Event initially occurred.
     * @param dataFlow
     * @throws IllegalArgumentException if source is null.
     */
    public InvokeBusinessBSuccessEvent(Object source, IOrderDataFlowContext dataFlow, Business business,JSONObject businessResponseData) {
        super(source, dataFlow);
        this.business = business;
        this.businessResponseData = businessResponseData;
    }
 
    /**
     * Constructs a prototypical Event.
     *
     * @param source   The object on which the Event initially occurred.
     * @param dataFlow
     * @throws IllegalArgumentException if source is null.
     */
    public InvokeBusinessBSuccessEvent(Object source, IOrderDataFlowContext dataFlow, Business business) {
        super(source, dataFlow);
        this.business = business;
    }
 
    public Business getBusiness() {
        return business;
    }
 
    /**
     * 获取业务数据
     * @return
     */
    public JSONObject getBusinessResponseData() {
        return businessResponseData;
    }
}