|
@@ -64,7 +64,7 @@ public class NotifyBusinessImpl implements INotifyBusiness {
|
|
@Override
|
|
@Override
|
|
public void sendAppPermissionUpdateNotify(List<String> tokenList) {
|
|
public void sendAppPermissionUpdateNotify(List<String> tokenList) {
|
|
if (tokenList.isEmpty()) {
|
|
if (tokenList.isEmpty()) {
|
|
- log.info("Isn't have userToken notify.");
|
|
|
|
|
|
+ log.info("向认证服务发送应用级权限变更通知,用户令牌为空无需发送.");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
String notifyUrl = dcucAuthConfig.getBimUrl() + "/api/rest/customization/ExpApiCustomDragonitService/appPermissionUpdate";
|
|
String notifyUrl = dcucAuthConfig.getBimUrl() + "/api/rest/customization/ExpApiCustomDragonitService/appPermissionUpdate";
|
|
@@ -97,7 +97,7 @@ public class NotifyBusinessImpl implements INotifyBusiness {
|
|
|
|
|
|
BimAppPermissionUpdateContentRespVO data = bimAppPermissionUpdateRespVo.getData();
|
|
BimAppPermissionUpdateContentRespVO data = bimAppPermissionUpdateRespVo.getData();
|
|
if (!bimAppPermissionUpdateRespVo.getSuccess()) {
|
|
if (!bimAppPermissionUpdateRespVo.getSuccess()) {
|
|
- log.error("App permission error :{}", postResp);
|
|
|
|
|
|
+ log.error("向认证服务发送应用级权限变更异常 :{}", postResp);
|
|
throw new RemoteAccessException(postResp);
|
|
throw new RemoteAccessException(postResp);
|
|
}
|
|
}
|
|
|
|
|