wuxw
2022-05-10 b2b5bdf6f42597e582da96aa56707e1f68d3936e
java110-core/src/main/java/com/java110/core/context/CodeDataFlow.java
old mode 100644 new mode 100755
@@ -11,8 +11,6 @@
 */
public class CodeDataFlow extends AbstractDataFlowContext {
    /**
     * 前缀
     */
@@ -42,6 +40,8 @@
        return port;
    }
    public void setPort(String port) {
        this.port = port;
    }
@@ -51,7 +51,7 @@
    }
    @Override
    public CodeDataFlow builder(String reqInfo, Map<String, String> headerAll) throws Exception {
    public CodeDataFlow doBuilder(String reqInfo, Map<String, String> headerAll) throws Exception {
        JSONObject reqInfoObj = JSONObject.parseObject(reqInfo);
        this.setReqJson(reqInfoObj);
        this.setReqData(reqInfo);
@@ -59,7 +59,8 @@
        this.setRequestTime(reqInfoObj.getString("requestTime"));
        if (headerAll != null && !headerAll.isEmpty()){
           this.headers.putAll(headerAll);
           this.requestCurrentHeaders.putAll(headerAll);
           this.requestHeaders.putAll(headerAll);
        }
        if(headerAll != null && headerAll.containsKey("hostName")) {
@@ -73,7 +74,7 @@
    }
    @Override
    public Orders getOrder() {
    public IOrders getOrder() {
        return this;
    }
}