Skip to content

Commit

Permalink
[Improvement][Seatunnel-web] Rename package com.whaleops.datasource t…
Browse files Browse the repository at this point in the history
…o org.apache.seatunnel (#217)
  • Loading branch information
arshadmohammad authored Sep 18, 2024
1 parent 1b42b62 commit ddd25bf
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class DatasourceLoadConfig {
"JDBC-CLICKHOUSE",
"org.apache.seatunnel.datasource.plugin.clickhouse.jdbc.ClickhouseJdbcDataSourceFactory");
classLoaderFactoryName.put(
"HIVE", "com.whaleops.datasource.datasource.plugin.hive.HiveDataSourceFactory");
"HIVE", "org.apache.seatunnel.datasource.plugin.hive.HiveDataSourceFactory");
classLoaderFactoryName.put(
"JDBC-ORACLE",
"org.apache.seatunnel.datasource.plugin.oracle.jdbc.OracleJdbcDataSourceFactory");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.s3;
package org.apache.seatunnel.datasource;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.api.configuration.util.OptionRule;
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginInfo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import com.google.common.collect.Sets;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.api.configuration.util.OptionRule;
import org.apache.seatunnel.datasource.plugin.api.DataSourceChannel;
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginException;
import org.apache.seatunnel.datasource.plugin.api.model.TableField;
import org.apache.seatunnel.datasource.plugin.hive.client.HiveClient;

import org.apache.commons.lang.StringUtils;

import com.whaleops.datasource.datasource.plugin.hive.client.HiveClient;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.datasource.plugin.api.DataSourceChannel;
import org.apache.seatunnel.datasource.plugin.api.DataSourceFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.api.configuration.Option;
import org.apache.seatunnel.api.configuration.Options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive.client;
package org.apache.seatunnel.datasource.plugin.hive.client;

import org.apache.seatunnel.common.utils.ExceptionUtils;
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginException;
import org.apache.seatunnel.datasource.plugin.api.model.TableField;
import org.apache.seatunnel.datasource.plugin.hive.HiveOptionRule;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
Expand All @@ -31,7 +32,6 @@
import org.apache.hadoop.security.UserGroupInformation;
import org.apache.thrift.TException;

import com.whaleops.datasource.datasource.plugin.hive.HiveOptionRule;
import lombok.extern.slf4j.Slf4j;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ PageInfo<DatasourceRes> queryDatasourceList(
/**
* query all datasource by type
*
* @param type @see com.whaleops.datasource.plugin.api.DatasourcePluginTypeEnum
* @param type @see org.apache.seatunnel.datasource.plugin.api.DatasourcePluginTypeEnum
* @return List DataSourcePluginInfo
*/
List<DataSourcePluginInfo> queryAllDatasourcesByType(Integer type);
Expand Down

0 comments on commit ddd25bf

Please sign in to comment.