|
|
|
@ -147,7 +147,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
|
|
|
|
|
/** |
|
|
|
|
* 当前远程工作目录是否为新创建的 |
|
|
|
|
*/ |
|
|
|
|
private boolean newCreate; |
|
|
|
|
private boolean newCreated; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 主机名,web应用,Servlet,端口监听器 |
|
|
|
@ -333,7 +333,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
|
|
|
|
|
this.certPathInput.setText(certPath); |
|
|
|
|
this.certSecretKeyInput.setText(certSecretKey); |
|
|
|
|
this.rememberPwdCheckbox.setSelected(rememberPwd); |
|
|
|
|
this.newCreate = ob.isNewCreated(); |
|
|
|
|
this.newCreated = ob.isNewCreated(); |
|
|
|
|
} else { |
|
|
|
|
this.remoteWorkspaceURL = RemoteWorkspaceURL.createDefaultURL(); |
|
|
|
|
this.usernameInput.setText(StringUtils.EMPTY); |
|
|
|
@ -341,7 +341,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
|
|
|
|
|
this.certPathInput.setText(StringUtils.EMPTY); |
|
|
|
|
this.certSecretKeyInput.setText(StringUtils.EMPTY); |
|
|
|
|
this.rememberPwdCheckbox.setSelected(true); |
|
|
|
|
this.newCreate = true; |
|
|
|
|
this.newCreated = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
fillRemoteEnvURLField(); |
|
|
|
@ -374,7 +374,7 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
|
|
|
|
|
rememberPwd); |
|
|
|
|
|
|
|
|
|
RemoteDesignerWorkspaceInfo info = RemoteDesignerWorkspaceInfo.create(connection); |
|
|
|
|
info.setNewCreated(newCreate); |
|
|
|
|
info.setNewCreated(newCreated); |
|
|
|
|
return info; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|