jdplus.sql.desktop.plugin.jdbc.ImportJdbcConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdplus-sql-desktop-plugin Show documentation
Show all versions of jdplus-sql-desktop-plugin Show documentation
${project.parent.artifactId} - ${project.artifactId}
The newest version!
/*
* Copyright 2013 National Bank of Belgium
*
* Licensed under the EUPL, Version 1.1 or - as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
package jdplus.sql.desktop.plugin.jdbc;
import jdplus.toolkit.desktop.plugin.Config;
import jdplus.toolkit.desktop.plugin.interchange.Importable;
import jdplus.toolkit.desktop.plugin.interchange.InterchangeManager;
import jdplus.toolkit.desktop.plugin.nodes.SingleNodeAction;
import nbbrd.design.ClassNameConstant;
import lombok.NonNull;
import org.openide.awt.ActionID;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionReferences;
import org.openide.awt.ActionRegistration;
import org.openide.nodes.Node;
import org.openide.util.NbBundle.Messages;
import org.openide.util.actions.Presenter;
import javax.swing.*;
import java.util.Collections;
import java.util.List;
@ActionID(category = "Edit", id = ImportJdbcConnection.ID)
@ActionRegistration(displayName = "#CTL_ImportJdbcConnection", lazy = false)
@ActionReferences({
@ActionReference(path = "Databases/Explorer/Root/Actions", position = 155, separatorAfter = 170)
})
@Messages("CTL_ImportJdbcConnection=Import from")
public final class ImportJdbcConnection extends SingleNodeAction implements Presenter.Popup {
@ClassNameConstant
public static final String ID = "jdplus.sql.desktop.plugin.jdbc.ImportJdbcConnection";
public ImportJdbcConnection() {
super(Node.class);
}
@Override
public JMenuItem getPopupPresenter() {
JMenuItem result = InterchangeManager.get().newImportMenu(getImportables());
result.setText(Bundle.CTL_ImportJdbcConnection());
return result;
}
@Override
protected boolean enable(Node activatedNode) {
return true;
}
@Override
protected void performAction(Node activatedNode) {
}
@Override
public String getName() {
return null;
}
private List getImportables() {
return Collections.singletonList(new Importable() {
@Override
public String getDomain() {
return DriverBasedConfig.class.getName();
}
@Override
public void importConfig(Config config) throws IllegalArgumentException {
DriverBasedConfig bean = fromConfig(config);
DbExplorerUtil.importConnection(bean);
}
});
}
@NonNull
private static DriverBasedConfig fromConfig(@NonNull Config config) throws IllegalArgumentException {
if (!DriverBasedConfig.class.getName().equals(config.getDomain())) {
throw new IllegalArgumentException("Invalid config");
}
DriverBasedConfig.Builder result = DriverBasedConfig.builder(config.getParameter("driverClass"), config.getParameter("databaseUrl"), config.getParameter("schema"), config.getName());
config.getParameters().entrySet().stream()
.filter(o -> o.getKey().startsWith("prop_"))
.forEach(o -> result.param(o.getKey().substring(5), o.getValue()));
return result.build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy