You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by ca...@apache.org on 2022/09/02 12:37:15 UTC

[incubator-linkis] branch dev-1.3.1 updated: feat(basedata-manager): add apache license (#3217)

This is an automated email from the ASF dual-hosted git repository.

casion pushed a commit to branch dev-1.3.1
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git


The following commit(s) were added to refs/heads/dev-1.3.1 by this push:
     new 70fb10c20 feat(basedata-manager): add apache license (#3217)
70fb10c20 is described below

commit 70fb10c20940daa83416780c6df83de1af14d9d2
Author: jack tao <79...@qq.com>
AuthorDate: Fri Sep 2 20:37:10 2022 +0800

    feat(basedata-manager): add apache license (#3217)
---
 .../src/apps/linkis/module/datasourceAccess/service.js | 17 +++++++++++++++++
 .../src/apps/linkis/module/datasourceEnv/service.js    | 17 +++++++++++++++++
 .../src/apps/linkis/module/datasourceType/service.js   | 17 +++++++++++++++++
 linkis-web/src/apps/linkis/module/errorCode/service.js | 18 +++++++++++++++++-
 .../src/apps/linkis/module/gatewayAuthToken/service.js | 17 +++++++++++++++++
 .../module/rmExternalResourceProvider/service.js       | 17 +++++++++++++++++
 .../src/apps/linkis/module/udfManager/service.js       | 17 +++++++++++++++++
 linkis-web/src/apps/linkis/module/udfTree/service.js   | 17 +++++++++++++++++
 8 files changed, 136 insertions(+), 1 deletion(-)

diff --git a/linkis-web/src/apps/linkis/module/datasourceAccess/service.js b/linkis-web/src/apps/linkis/module/datasourceAccess/service.js
index f8e2fd083..fa11a1e45 100644
--- a/linkis-web/src/apps/linkis/module/datasourceAccess/service.js
+++ b/linkis-web/src/apps/linkis/module/datasourceAccess/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {
diff --git a/linkis-web/src/apps/linkis/module/datasourceEnv/service.js b/linkis-web/src/apps/linkis/module/datasourceEnv/service.js
index 1923ef7e8..f5dee7357 100644
--- a/linkis-web/src/apps/linkis/module/datasourceEnv/service.js
+++ b/linkis-web/src/apps/linkis/module/datasourceEnv/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {
diff --git a/linkis-web/src/apps/linkis/module/datasourceType/service.js b/linkis-web/src/apps/linkis/module/datasourceType/service.js
index f1fa8cf17..aa77f6016 100644
--- a/linkis-web/src/apps/linkis/module/datasourceType/service.js
+++ b/linkis-web/src/apps/linkis/module/datasourceType/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {
diff --git a/linkis-web/src/apps/linkis/module/errorCode/service.js b/linkis-web/src/apps/linkis/module/errorCode/service.js
index f230c196e..3b369998a 100644
--- a/linkis-web/src/apps/linkis/module/errorCode/service.js
+++ b/linkis-web/src/apps/linkis/module/errorCode/service.js
@@ -1,5 +1,21 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
-import {serialize} from "object-to-formdata";
 
 const getList = (params)=> {
   console.log(params)
diff --git a/linkis-web/src/apps/linkis/module/gatewayAuthToken/service.js b/linkis-web/src/apps/linkis/module/gatewayAuthToken/service.js
index 9753a2f78..90ef24706 100644
--- a/linkis-web/src/apps/linkis/module/gatewayAuthToken/service.js
+++ b/linkis-web/src/apps/linkis/module/gatewayAuthToken/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {
diff --git a/linkis-web/src/apps/linkis/module/rmExternalResourceProvider/service.js b/linkis-web/src/apps/linkis/module/rmExternalResourceProvider/service.js
index a977b435d..39c65afc8 100644
--- a/linkis-web/src/apps/linkis/module/rmExternalResourceProvider/service.js
+++ b/linkis-web/src/apps/linkis/module/rmExternalResourceProvider/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {
diff --git a/linkis-web/src/apps/linkis/module/udfManager/service.js b/linkis-web/src/apps/linkis/module/udfManager/service.js
index e8f212f55..d1950b2b0 100644
--- a/linkis-web/src/apps/linkis/module/udfManager/service.js
+++ b/linkis-web/src/apps/linkis/module/udfManager/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {
diff --git a/linkis-web/src/apps/linkis/module/udfTree/service.js b/linkis-web/src/apps/linkis/module/udfTree/service.js
index 6441d4c1f..cdce5ee26 100644
--- a/linkis-web/src/apps/linkis/module/udfTree/service.js
+++ b/linkis-web/src/apps/linkis/module/udfTree/service.js
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 import api from '@/common/service/api';
 
 const getList = (params)=> {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org