wuxw
2019-08-09 bf47d41dddf76c58a41692e492014499f9d433ae
java110-core/src/main/java/com/java110/core/context/DataFlowContext.java
@@ -19,57 +19,60 @@
     * 请求报文
     * @return
     */
    public String getReqData();
     String getReqData();
    public JSONObject getReqJson();
    //AppId
     String getAppId();
     JSONObject getReqJson();
    /**
     * 返回报文
     * @return
     */
    public JSONObject getResJson();
     JSONObject getResJson();
    /**
     * 添加各个环节的耗时
     * @param dataFlowLinksCost
     */
    public void addLinksCostDates(DataFlowLinksCost dataFlowLinksCost);
     void addLinksCostDates(DataFlowLinksCost dataFlowLinksCost);
    /**
     * 添加日志信息
     * @param dataFlowLog
     */
    public void addLogDatas(DataFlowLog dataFlowLog);
     void addLogDatas(DataFlowLog dataFlowLog);
    public List<DataFlowLinksCost> getLinksCostDates();
     List<DataFlowLinksCost> getLinksCostDates();
    public List<Business> getBusinesses();
     List<Business> getBusinesses();
    /**
     * 源请求头信息
     * @return
     */
    public Map<String, String> getRequestHeaders();
     Map<String, String> getRequestHeaders();
    /**
     * 终返回头信息
     * @return
     */
    public Map<String, String> getResponseHeaders();
     Map<String, String> getResponseHeaders();
    /**
     * 当前请求头信息
     * @return
     */
    public Map<String, String> getRequestCurrentHeaders();
     Map<String, String> getRequestCurrentHeaders();
    /**
     * 当前返回头信息
     * @return
     */
    public Map<String, String> getResponseCurrentHeaders();
     Map<String, String> getResponseCurrentHeaders();
    public Orders getOrder();
     IOrders getOrder();
    /**