|
|
|
@ -27,7 +27,6 @@ import com.fr.module.tool.ActivatorToolBox;
|
|
|
|
|
import com.fr.security.encryption.transmission.TransmissionEncryptionManager; |
|
|
|
|
import com.fr.stable.Constants; |
|
|
|
|
import com.fr.stable.StringUtils; |
|
|
|
|
import com.fr.third.fasterxml.jackson.core.JsonProcessingException; |
|
|
|
|
import com.fr.third.fasterxml.jackson.databind.ObjectMapper; |
|
|
|
|
import com.fr.third.springframework.beans.BeanUtils; |
|
|
|
|
import com.fr.workspace.server.repository.WorkplaceConstants; |
|
|
|
@ -180,7 +179,7 @@ public class ConnectionInfoBeanHelper {
|
|
|
|
|
.redirectPort(jdbcConnection.getSsh().getRedirectPort()) |
|
|
|
|
.redirectIp((jdbcConnection.getSsh()).getRedirectIp()) |
|
|
|
|
.sshTimeOut(((BaseSsh) jdbcConnection.getSsh()).getTimeOut()) |
|
|
|
|
.sshSecret(withPassword ? ((BaseSsh) jdbcConnection.getSsh()).getSecret() : DecisionServiceConstants.DEFAULT_PASSWORD) |
|
|
|
|
.sshSecret(withPassword ? DataEncryptionHelper.encrypt(((BaseSsh) jdbcConnection.getSsh()).getSecret()) : DecisionServiceConstants.DEFAULT_PASSWORD) |
|
|
|
|
.sshPrivateKeyPath(jdbcConnection.getSsh().getSshType() == SshType.KEY ? ((KeyVerifySsh) jdbcConnection.getSsh()).getPrivateKeyPath() : StringUtils.EMPTY) |
|
|
|
|
.usingSsl((jdbcConnection.getSsl()).isUsingSsl()) |
|
|
|
|
.sslType(jdbcConnection.getSsl().getSslType().toString()) |
|
|
|
|