提交 2fdf2b19 编写于 作者: S Serge Rider

#2 MySQL SSL.

#3 PostgreSQL SSL.
上级 f103d4b9
......@@ -356,4 +356,17 @@
</tools>
</extension>
<extension point="org.jkiss.dbeaver.networkHandler">
<handler
type="config"
id="mysql_ssl"
label="SSL"
description="Secure socket layer"
secured="true"
uiClass="org.jkiss.dbeaver.ext.mysql.views.MySQLSSLConfigurator"
handlerClass="org.jkiss.dbeaver.model.impl.net.SSLHandlerImpl">
<objectType name="org.jkiss.dbeaver.ext.mysql.MySQLDataSourceProvider"/>
</handler>
</extension>
</plugin>
/*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2016 Serge Rieder (serge@jkiss.org)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (version 2)
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package org.jkiss.dbeaver.ext.mysql.views;
import org.eclipse.swt.widgets.Composite;
import org.jkiss.dbeaver.model.net.DBWHandlerConfiguration;
import org.jkiss.dbeaver.ui.dialogs.net.SSLConfiguratorAbstractUI;
/**
* MySQLSSLConfigurator
*/
public class MySQLSSLConfigurator extends SSLConfiguratorAbstractUI
{
@Override
public void createControl(Composite parent) {
}
@Override
public void loadSettings(DBWHandlerConfiguration configuration) {
}
@Override
public void saveSettings(DBWHandlerConfiguration configuration) {
}
}
......@@ -256,7 +256,7 @@
label="SSL"
description="Secure socket layer"
secured="true"
uiClass="org.jkiss.dbeaver.ext.postgresql.SSLConfiguratorAbstractUI"
uiClass="org.jkiss.dbeaver.ext.postgresql.ui.PostgreSSLConfigurator"
handlerClass="org.jkiss.dbeaver.model.impl.net.SSLHandlerImpl">
<objectType name="org.jkiss.dbeaver.ext.postgresql.PostgreDataSourceProvider"/>
</handler>
......
/*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2016 Serge Rieder (serge@jkiss.org)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (version 2)
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package org.jkiss.dbeaver.ext.postgresql.ui;
import org.eclipse.swt.widgets.Composite;
import org.jkiss.dbeaver.model.net.DBWHandlerConfiguration;
import org.jkiss.dbeaver.ui.dialogs.net.SSLConfiguratorAbstractUI;
/**
* PostgreSSLConfigurator
*/
public class PostgreSSLConfigurator extends SSLConfiguratorAbstractUI
{
@Override
public void createControl(Composite parent) {
}
@Override
public void loadSettings(DBWHandlerConfiguration configuration) {
}
@Override
public void saveSettings(DBWHandlerConfiguration configuration) {
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册