blob: 6346ff4f301afd6ce842c614f882d4ea4b8d40c7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.seatunnel.datasource.client;
import org.apache.seatunnel.datasource.configuration.util.OptionRule;
import org.apache.seatunnel.datasource.model.DataSource;
import org.apache.seatunnel.datasource.model.DataSourcePluginInfo;
import org.apache.seatunnel.datasource.model.Table;
import org.apache.seatunnel.datasource.service.SeaTunnelAutoTableService;
import org.apache.seatunnel.datasource.service.SeaTunnelTableService;
import java.util.List;
import java.util.Map;
public class SeaTunnelDataSourceClient extends AbstractSeaTunnelDataSourceClient implements SeaTunnelTableService, SeaTunnelAutoTableService {
public SeaTunnelDataSourceClient(javax.sql.DataSource dataSource) {
super(dataSource);
}
@Override
public OptionRule getDataSourceMetadataFieldsByDataSourceName(String dataSourceName) {
return null;
}
@Override
public OptionRule getDataSourceMetadataFieldsByDataSourceId(String dataSourceId) {
return null;
}
@Override
public List<String> getTables(String dataSourceId, Map<String, Object> requestParams) {
return null;
}
@Override
public List<String> getDatabases(String dataSourceId, Map<String, Object> requestParams) {
return null;
}
@Override
public Table getTable(String dataSourceId, Map<String, Object> requestParams) {
return null;
}
@Override
public List<DataSourcePluginInfo> listAllDataSources() {
return null;
}
@Override
public OptionRule queryDataSourceFieldByName(String pluginName) {
return null;
}
@Override
public Boolean checkDataSourceFields(String pluginName, Map<String, Object> parameters) {
return null;
}
@Override
public DataSource queryDataSourceById(Long dataSourceId) {
return null;
}
@Override
public Boolean saveDataSource(String dataSourceName, String comment, String pluginName, Map<String, Object> parameters) {
return null;
}
@Override
public Boolean deleteDataSource(Long id) {
return null;
}
@Override
public Boolean updateDataSource(Long dataSourceId, String dataSourceName, String comment, Map<String, Object> parameters) {
return null;
}
@Override
public Boolean checkDataSourceConnectivity(String pluginName, Map<String, Object> dataSourceParams) {
return null;
}
@Override
public Boolean createTable(Long datasourceId, String databaseName, String tableName, Map<String, String> tableFields, String description) {
return null;
}
@Override
public Boolean dropSchema(String schemaId) {
return null;
}
@Override
public Table getTable(Long datasourceId, String databaseName, String tableName) {
return null;
}
@Override
public List<String> getTableNames(Long datasourceId, String databaseName) {
return null;
}
@Override
public List<String> getDatabaseNames(Long datasourceId) {
return null;
}
@Override
public List<Table> getTables(String datasourceId, String databaseName) {
return null;
}
}