|
|
|
@ -113,11 +113,6 @@ public class EnvChangeEntrance {
|
|
|
|
|
}); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
// 如果版本不一致,且确认 不继续 连接,这里返回 false.
|
|
|
|
|
if (!versionCheckAndConfirm(selectedEnv)) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WorkContext.switchTo(workspace, new WorkContextCallback() { |
|
|
|
|
@Override |
|
|
|
@ -137,6 +132,8 @@ public class EnvChangeEntrance {
|
|
|
|
|
template.refreshToolArea(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//是否需要做服务校验
|
|
|
|
|
if(needCheckBranch(selectedEnv)) { |
|
|
|
|
String localBranch; |
|
|
|
|
String remoteBranch; |
|
|
|
|
localBranch = GeneralUtils.readFullBuildNO(); |
|
|
|
@ -163,7 +160,7 @@ public class EnvChangeEntrance {
|
|
|
|
|
CheckServiceDialog dialog = new CheckServiceDialog(DesignerContext.getDesignerFrame(), areaText, localBranch, remoteBranch); |
|
|
|
|
dialog.setVisible(true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} catch (WorkspaceAuthException | RegistEditionException e) { |
|
|
|
|
// String title = Toolkit.i18nText("Fine-Design_Basic_Remote_Connect_Auth_Failed");
|
|
|
|
|
// String title = Toolkit.i18nText("Fine-Design_Basic_Lic_Does_Not_Support_Remote");
|
|
|
|
@ -196,6 +193,7 @@ public class EnvChangeEntrance {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 这个功能留着,可能会加回来,先做注释处理 |
|
|
|
|
* 切换远程环境之前,进行版本检测,当版本不一致的时候,提示。 |
|
|
|
|
* 当用户确认选择 ok 时,才继续。 |
|
|
|
|
* |
|
|
|
@ -239,6 +237,17 @@ public class EnvChangeEntrance {
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 判断是否需要做版本验证,判断依据为 |
|
|
|
|
* 1、选择的环境为远程环境 |
|
|
|
|
* 2、一个月内不弹出是否勾选(这里预留,还未实际增加) |
|
|
|
|
* @param selectedEnv 选择的环境 |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private boolean needCheckBranch(DesignerWorkspaceInfo selectedEnv){ |
|
|
|
|
return selectedEnv.getType() == DesignerWorkspaceType.Remote; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Set<Class> getNoExistServiceSet(WorkspaceConnectionInfo info){ |
|
|
|
|
Set<Class> noExistServiceSet = new HashSet<Class>(); |
|
|
|
|
Set<Class> remoteServiceSet = new HashSet<Class>(); |
|
|
|
|