/** * DataCleaner (community edition) * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, 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 Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.datacleaner.connection; import org.datacleaner.metamodel.datahub.DataHubConnection; import org.datacleaner.metamodel.datahub.DataHubDataContext; import org.datacleaner.metamodel.datahub.DataHubSecurityMode; public class DataHubDatastore extends UsageAwareDatastore<DataHubDataContext> implements UpdateableDatastore, UsernameDatastore { private static final long serialVersionUID = 1L; private final String _host; private final Integer _port; private final String _username; private final String _password; private final boolean _https; private final boolean _acceptUnverifiedSslPeers; private final DataHubSecurityMode _securityMode; public DataHubDatastore(final String name, final String host, final Integer port, final String username, final String password, final boolean https, final boolean acceptUnverifiedSslPeers, final DataHubSecurityMode dataHubSecurityMode) { super(name); _host = host; _port = port; _username = username; _password = password; _https = https; _acceptUnverifiedSslPeers = acceptUnverifiedSslPeers; _securityMode = dataHubSecurityMode; } @Override public PerformanceCharacteristics getPerformanceCharacteristics() { return new PerformanceCharacteristicsImpl(true, false); } public String getHost() { return _host; } public Integer getPort() { return _port; } @Override public String getUsername() { return _username; } public String getPassword() { return _password; } public boolean isHttps() { return _https; } public boolean isAcceptUnverifiedSslPeers() { return _acceptUnverifiedSslPeers; } public DataHubSecurityMode getSecurityMode() { return _securityMode; } @Override public UpdateableDatastoreConnection openConnection() { final DatastoreConnection connection = super.openConnection(); return (UpdateableDatastoreConnection) connection; } @Override protected UsageAwareDatastoreConnection<DataHubDataContext> createDatastoreConnection() { final DataHubConnection connection = new DataHubConnection(_host, _port, _username, _password, _https, _acceptUnverifiedSslPeers, _securityMode); final DataHubDataContext dataContext = new DataHubDataContext(connection); return new UpdateableDatastoreConnectionImpl<>(dataContext, this); } @Override public String toString() { return "DataHubDatastore[host= " + _host + ", port=" + _port + ", username=" + _username + ", https=" + _https + ", acceptUnverifiedSslPeers=" + _acceptUnverifiedSslPeers + ", securityMode=" + _securityMode + "]"; } }