|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.fr.design.data.datapane.connect; |
|
|
|
package com.fr.design.data.datapane.connect; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.fr.base.i18n.BidiUtils; |
|
|
|
import com.fr.data.impl.JDBCDatabaseConnection; |
|
|
|
import com.fr.data.impl.JDBCDatabaseConnection; |
|
|
|
import com.fr.data.security.ssl.Ssl; |
|
|
|
import com.fr.data.security.ssl.Ssl; |
|
|
|
import com.fr.data.security.ssl.SslException; |
|
|
|
import com.fr.data.security.ssl.SslException; |
|
|
@ -84,9 +85,12 @@ public class SslPane extends BasicPane { |
|
|
|
}; |
|
|
|
}; |
|
|
|
usingSsl.setSelected(true); |
|
|
|
usingSsl.setSelected(true); |
|
|
|
contextPane = TableLayoutHelper.createGapTableLayoutPane(usingComps, new double[]{p, p, p, p}, columnSize, 11, 11); |
|
|
|
contextPane = TableLayoutHelper.createGapTableLayoutPane(usingComps, new double[]{p, p, p, p}, columnSize, 11, 11); |
|
|
|
jPanel.add(usingSsl, BorderLayout.NORTH); |
|
|
|
JPanel sslPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
|
|
|
|
|
|
sslPane.add(usingSsl, BorderLayout.LINE_START); |
|
|
|
|
|
|
|
jPanel.add(sslPane, BorderLayout.NORTH); |
|
|
|
jPanel.add(contextPane, BorderLayout.CENTER); |
|
|
|
jPanel.add(contextPane, BorderLayout.CENTER); |
|
|
|
this.add(jPanel); |
|
|
|
this.add(jPanel); |
|
|
|
|
|
|
|
BidiUtils.applyOrientationByLocale(this); |
|
|
|
usingSsl.addActionListener(new ActionListener() { |
|
|
|
usingSsl.addActionListener(new ActionListener() { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|