Skip to content

Commit ddd25bf

Browse files
[Improvement][Seatunnel-web] Rename package com.whaleops.datasource to org.apache.seatunnel (#217)
1 parent 1b42b62 commit ddd25bf

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

seatunnel-datasource/seatunnel-datasource-client/src/main/java/org/apache/seatunnel/datasource/classloader/DatasourceLoadConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class DatasourceLoadConfig {
5757
"JDBC-CLICKHOUSE",
5858
"org.apache.seatunnel.datasource.plugin.clickhouse.jdbc.ClickhouseJdbcDataSourceFactory");
5959
classLoaderFactoryName.put(
60-
"HIVE", "com.whaleops.datasource.datasource.plugin.hive.HiveDataSourceFactory");
60+
"HIVE", "org.apache.seatunnel.datasource.plugin.hive.HiveDataSourceFactory");
6161
classLoaderFactoryName.put(
6262
"JDBC-ORACLE",
6363
"org.apache.seatunnel.datasource.plugin.oracle.jdbc.OracleJdbcDataSourceFactory");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.s3;
18+
package org.apache.seatunnel.datasource;
1919

2020
import org.junit.jupiter.api.Assertions;
2121
import org.junit.jupiter.api.Disabled;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.datasource.plugin.hive;
18+
package org.apache.seatunnel.datasource.plugin.hive;
1919

2020
import org.apache.seatunnel.api.configuration.util.OptionRule;
2121
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginInfo;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.datasource.plugin.hive;
18+
package org.apache.seatunnel.datasource.plugin.hive;
1919

2020
import com.google.common.collect.Sets;
2121

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.datasource.plugin.hive;
18+
package org.apache.seatunnel.datasource.plugin.hive;
1919

2020
import org.apache.seatunnel.api.configuration.util.OptionRule;
2121
import org.apache.seatunnel.datasource.plugin.api.DataSourceChannel;
2222
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginException;
2323
import org.apache.seatunnel.datasource.plugin.api.model.TableField;
24+
import org.apache.seatunnel.datasource.plugin.hive.client.HiveClient;
2425

2526
import org.apache.commons.lang.StringUtils;
2627

27-
import com.whaleops.datasource.datasource.plugin.hive.client.HiveClient;
2828
import lombok.NonNull;
2929
import lombok.extern.slf4j.Slf4j;
3030

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.datasource.plugin.hive;
18+
package org.apache.seatunnel.datasource.plugin.hive;
1919

2020
import org.apache.seatunnel.datasource.plugin.api.DataSourceChannel;
2121
import org.apache.seatunnel.datasource.plugin.api.DataSourceFactory;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.datasource.plugin.hive;
18+
package org.apache.seatunnel.datasource.plugin.hive;
1919

2020
import org.apache.seatunnel.api.configuration.Option;
2121
import org.apache.seatunnel.api.configuration.Options;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@
1515
* limitations under the License.
1616
*/
1717

18-
package com.whaleops.datasource.datasource.plugin.hive.client;
18+
package org.apache.seatunnel.datasource.plugin.hive.client;
1919

2020
import org.apache.seatunnel.common.utils.ExceptionUtils;
2121
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginException;
2222
import org.apache.seatunnel.datasource.plugin.api.model.TableField;
23+
import org.apache.seatunnel.datasource.plugin.hive.HiveOptionRule;
2324

2425
import org.apache.commons.collections.CollectionUtils;
2526
import org.apache.commons.lang3.StringUtils;
@@ -31,7 +32,6 @@
3132
import org.apache.hadoop.security.UserGroupInformation;
3233
import org.apache.thrift.TException;
3334

34-
import com.whaleops.datasource.datasource.plugin.hive.HiveOptionRule;
3535
import lombok.extern.slf4j.Slf4j;
3636

3737
import java.io.File;

seatunnel-server/seatunnel-app/src/main/java/org/apache/seatunnel/app/service/IDatasourceService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ PageInfo<DatasourceRes> queryDatasourceList(
207207
/**
208208
* query all datasource by type
209209
*
210-
* @param type @see com.whaleops.datasource.plugin.api.DatasourcePluginTypeEnum
210+
* @param type @see org.apache.seatunnel.datasource.plugin.api.DatasourcePluginTypeEnum
211211
* @return List DataSourcePluginInfo
212212
*/
213213
List<DataSourcePluginInfo> queryAllDatasourcesByType(Integer type);

0 commit comments

Comments
 (0)