|
@@ -72,8 +72,10 @@ public class UserRegisterServiceListener extends AbstractServiceApiDataFlowListe
|
|
|
JSONObject business = JSONObject.parseObject("{\"datas\":{}}");
|
|
JSONObject business = JSONObject.parseObject("{\"datas\":{}}");
|
|
|
business.put(CommonConstant.HTTP_BUSINESS_SERVICE_CODE,ServiceCodeConstant.SERVICE_CODE_SAVE_USER_INFO);
|
|
business.put(CommonConstant.HTTP_BUSINESS_SERVICE_CODE,ServiceCodeConstant.SERVICE_CODE_SAVE_USER_INFO);
|
|
|
business.put(CommonConstant.HTTP_BUSINESS_SERVICE_NAME,"用户注册");
|
|
business.put(CommonConstant.HTTP_BUSINESS_SERVICE_NAME,"用户注册");
|
|
|
|
|
+ business.put(CommonConstant.HTTP_USER_ID,"-1");
|
|
|
business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessUser",JSONObject.parseObject(paramIn));
|
|
business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessUser",JSONObject.parseObject(paramIn));
|
|
|
HttpHeaders header = new HttpHeaders();
|
|
HttpHeaders header = new HttpHeaders();
|
|
|
|
|
+ dataFlowContext.getRequestCurrentHeaders().put(CommonConstant.HTTP_USER_ID,"-1");
|
|
|
String paramInObj = super.restToCenterProtocol(business,dataFlowContext.getRequestCurrentHeaders()).toJSONString();
|
|
String paramInObj = super.restToCenterProtocol(business,dataFlowContext.getRequestCurrentHeaders()).toJSONString();
|
|
|
|
|
|
|
|
HttpEntity<String> httpEntity = new HttpEntity<String>(paramInObj, header);
|
|
HttpEntity<String> httpEntity = new HttpEntity<String>(paramInObj, header);
|