From 6e99e05f13ffc498a68868b9d6a370ec5e146e34 Mon Sep 17 00:00:00 2001 From: Martin Traverse Date: Thu, 7 Nov 2024 11:21:56 +0000 Subject: [PATCH] Update license headers - # comments, 2022 --- .../models/python/src/tutorial/__init__.py | 11 +++++---- .../models/python/src/tutorial/hello_world.py | 11 +++++---- .../models/python/src/tutorial/model_1.py | 11 +++++---- .../models/python/src/tutorial/model_2.py | 11 +++++---- .../python/src/tutorial/schema_files.py | 11 +++++---- .../python/src/tutorial/schemas/__init__.py | 23 +++++-------------- .../models/python/src/tutorial/using_data.py | 11 +++++---- .../python/src/tracdap/rt/_exec/context.py | 11 +++++---- .../python/src/tracdap/rt/_exec/dev_mode.py | 11 +++++---- .../python/src/tracdap/rt/_exec/engine.py | 11 +++++---- .../python/src/tracdap/rt/_exec/functions.py | 11 +++++---- .../python/src/tracdap/rt/_exec/graph.py | 11 +++++---- .../src/tracdap/rt/_exec/graph_builder.py | 11 +++++---- .../python/src/tracdap/rt/_exec/runtime.py | 11 +++++---- .../src/tracdap/rt/_impl/config_parser.py | 11 +++++---- .../python/src/tracdap/rt/_impl/data.py | 11 +++++---- .../python/src/tracdap/rt/_impl/models.py | 11 +++++---- .../python/src/tracdap/rt/_impl/repos.py | 11 +++++---- .../python/src/tracdap/rt/_impl/schemas.py | 11 +++++---- .../python/src/tracdap/rt/_impl/shim.py | 11 +++++---- .../python/src/tracdap/rt/_impl/static_api.py | 11 +++++---- .../python/src/tracdap/rt/_impl/storage.py | 11 +++++---- .../src/tracdap/rt/_impl/type_system.py | 11 +++++---- .../python/src/tracdap/rt/_impl/util.py | 11 +++++---- .../src/tracdap/rt/_plugins/storage_aws.py | 11 +++++---- .../python/src/tracdap/rt/api/hook.py | 11 +++++---- .../python/src/tracdap/rt/api/model_api.py | 11 +++++---- .../python/src/tracdap/rt/api/static_api.py | 11 +++++---- .../python/src/tracdap/rt/config/__init__.py | 11 +++++---- .../python/src/tracdap/rt/ext/__init__.py | 11 +++++---- .../python/src/tracdap/rt/ext/embed.py | 11 +++++---- .../python/src/tracdap/rt/ext/repos.py | 11 +++++---- .../python/src/tracdap/rt/ext/storage.py | 11 +++++---- .../python/src/tracdap/rt/launch/launch.py | 11 +++++---- .../test/tracdap_examples/test_tutorial.py | 11 +++++---- .../python/test/tracdap_test/__init__.py | 11 +++++---- .../test/tracdap_test/resources/__init__.py | 11 +++++---- .../test/tracdap_test/rt/impl/test_data.py | 11 +++++---- .../test/tracdap_test/rt/impl/test_models.py | 11 +++++---- .../test/tracdap_test/rt/impl/test_repos.py | 11 +++++---- .../test/tracdap_test/rt/impl/test_schemas.py | 11 +++++---- .../tracdap_test/rt/impl/test_shim_loader.py | 11 +++++---- .../test/tracdap_test/rt/jobs/__init__.py | 11 +++++---- .../tracdap_test/rt/jobs/test_core_jobs.py | 11 +++++---- .../rt/jobs/test_embedded_jobs.py | 11 +++++---- .../test_data/shim_test/acme/__init__.py | 11 +++++---- .../shim_test/acme/rockets/__init__.py | 11 +++++---- .../test_data/shim_test/acme/rockets/abs1.py | 11 +++++---- .../shim_test/acme/rockets/abs1_/__init__.py | 11 +++++---- .../acme/rockets/abs1_/abs_module.py | 11 +++++---- .../test_data/shim_test/acme/rockets/dup1.py | 11 +++++---- .../shim_test/acme/rockets/dup1/__init__.py | 11 +++++---- .../test_data/shim_test/acme/rockets/pkg1.py | 11 +++++---- .../shim_test/acme/rockets/pkg1_/__init__.py | 11 +++++---- .../acme/rockets/pkg1_/pkg_module.py | 11 +++++---- .../test_data/shim_test/acme/rockets/pkg2.py | 11 +++++---- .../shim_test/acme/rockets/pkg2_/__init__.py | 11 +++++---- .../acme/rockets/pkg2_/pkg_module.py | 11 +++++---- .../test_data/shim_test/acme/rockets/rel1.py | 11 +++++---- .../shim_test/acme/rockets/rel1_/__init__.py | 11 +++++---- .../acme/rockets/rel1_/rel_module.py | 11 +++++---- .../test_data/shim_test/acme/rockets/rel2.py | 11 +++++---- .../shim_test/acme/rockets/rel2_/__init__.py | 11 +++++---- .../acme/rockets/rel2_/rel_module.py | 11 +++++---- .../test_data/shim_test/acme/rockets/rel3.py | 11 +++++---- .../shim_test/acme/rockets/rel3_/__init__.py | 11 +++++---- .../acme/rockets/rel3_/rel_module.py | 11 +++++---- .../shim_test/acme/rockets/sub2/__init__.py | 11 +++++---- .../acme/rockets/sub2/rel_included.py | 11 +++++---- .../src/test/resources/data_round_trip.py | 11 +++++---- 70 files changed, 420 insertions(+), 362 deletions(-) diff --git a/examples/models/python/src/tutorial/__init__.py b/examples/models/python/src/tutorial/__init__.py index a360c8547..d5a69a43b 100644 --- a/examples/models/python/src/tutorial/__init__.py +++ b/examples/models/python/src/tutorial/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/examples/models/python/src/tutorial/hello_world.py b/examples/models/python/src/tutorial/hello_world.py index 87ad85452..177c83b50 100644 --- a/examples/models/python/src/tutorial/hello_world.py +++ b/examples/models/python/src/tutorial/hello_world.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/examples/models/python/src/tutorial/model_1.py b/examples/models/python/src/tutorial/model_1.py index 386495bb4..3cf0566a9 100644 --- a/examples/models/python/src/tutorial/model_1.py +++ b/examples/models/python/src/tutorial/model_1.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/examples/models/python/src/tutorial/model_2.py b/examples/models/python/src/tutorial/model_2.py index 4dda9dde9..9287c8be9 100644 --- a/examples/models/python/src/tutorial/model_2.py +++ b/examples/models/python/src/tutorial/model_2.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/examples/models/python/src/tutorial/schema_files.py b/examples/models/python/src/tutorial/schema_files.py index 7295e3364..e8acc72f5 100644 --- a/examples/models/python/src/tutorial/schema_files.py +++ b/examples/models/python/src/tutorial/schema_files.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/examples/models/python/src/tutorial/schemas/__init__.py b/examples/models/python/src/tutorial/schemas/__init__.py index f7a1a2e73..d5a69a43b 100644 --- a/examples/models/python/src/tutorial/schemas/__init__.py +++ b/examples/models/python/src/tutorial/schemas/__init__.py @@ -1,20 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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. -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/examples/models/python/src/tutorial/using_data.py b/examples/models/python/src/tutorial/using_data.py index 31f7fe002..e3998f882 100644 --- a/examples/models/python/src/tutorial/using_data.py +++ b/examples/models/python/src/tutorial/using_data.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/context.py b/tracdap-runtime/python/src/tracdap/rt/_exec/context.py index 4a886e004..ec27ef954 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/context.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/context.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/dev_mode.py b/tracdap-runtime/python/src/tracdap/rt/_exec/dev_mode.py index 94a8cb8d9..25321d2f4 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/dev_mode.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/dev_mode.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/engine.py b/tracdap-runtime/python/src/tracdap/rt/_exec/engine.py index 9f69122a0..43f53cba8 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/engine.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/engine.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/functions.py b/tracdap-runtime/python/src/tracdap/rt/_exec/functions.py index 7933a9719..1aeac488e 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/functions.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/functions.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/graph.py b/tracdap-runtime/python/src/tracdap/rt/_exec/graph.py index 0d008d895..d9f8d3739 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/graph.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/graph.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/graph_builder.py b/tracdap-runtime/python/src/tracdap/rt/_exec/graph_builder.py index b47322ee3..f048d1f5b 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/graph_builder.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/graph_builder.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_exec/runtime.py b/tracdap-runtime/python/src/tracdap/rt/_exec/runtime.py index 541a84cac..f703f6c19 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_exec/runtime.py +++ b/tracdap-runtime/python/src/tracdap/rt/_exec/runtime.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/config_parser.py b/tracdap-runtime/python/src/tracdap/rt/_impl/config_parser.py index 725a8dcb7..c550dbed7 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/config_parser.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/config_parser.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/data.py b/tracdap-runtime/python/src/tracdap/rt/_impl/data.py index 061fa666b..1e8666a41 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/data.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/data.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/models.py b/tracdap-runtime/python/src/tracdap/rt/_impl/models.py index 8f4f3f79e..6bdb7222f 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/models.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/models.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/repos.py b/tracdap-runtime/python/src/tracdap/rt/_impl/repos.py index 0abfe9d94..06f1ddcb7 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/repos.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/repos.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/schemas.py b/tracdap-runtime/python/src/tracdap/rt/_impl/schemas.py index 83dbec1ee..97bbe5e62 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/schemas.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/schemas.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/shim.py b/tracdap-runtime/python/src/tracdap/rt/_impl/shim.py index e289347be..4e5a99e04 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/shim.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/shim.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/static_api.py b/tracdap-runtime/python/src/tracdap/rt/_impl/static_api.py index 21f903abb..bb0b31a00 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/static_api.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/static_api.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/storage.py b/tracdap-runtime/python/src/tracdap/rt/_impl/storage.py index 85401a432..f4ebb46fb 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/storage.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/storage.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/type_system.py b/tracdap-runtime/python/src/tracdap/rt/_impl/type_system.py index a6570002c..ae432ac39 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/type_system.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/type_system.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_impl/util.py b/tracdap-runtime/python/src/tracdap/rt/_impl/util.py index 66cde275b..37c718aeb 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_impl/util.py +++ b/tracdap-runtime/python/src/tracdap/rt/_impl/util.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/_plugins/storage_aws.py b/tracdap-runtime/python/src/tracdap/rt/_plugins/storage_aws.py index 6fe18ce7c..79cbe01fb 100644 --- a/tracdap-runtime/python/src/tracdap/rt/_plugins/storage_aws.py +++ b/tracdap-runtime/python/src/tracdap/rt/_plugins/storage_aws.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/api/hook.py b/tracdap-runtime/python/src/tracdap/rt/api/hook.py index 2b1da28a8..35465aa67 100644 --- a/tracdap-runtime/python/src/tracdap/rt/api/hook.py +++ b/tracdap-runtime/python/src/tracdap/rt/api/hook.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/api/model_api.py b/tracdap-runtime/python/src/tracdap/rt/api/model_api.py index cba0ea397..5a026269b 100644 --- a/tracdap-runtime/python/src/tracdap/rt/api/model_api.py +++ b/tracdap-runtime/python/src/tracdap/rt/api/model_api.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/api/static_api.py b/tracdap-runtime/python/src/tracdap/rt/api/static_api.py index f207f04e1..dda21d825 100644 --- a/tracdap-runtime/python/src/tracdap/rt/api/static_api.py +++ b/tracdap-runtime/python/src/tracdap/rt/api/static_api.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/config/__init__.py b/tracdap-runtime/python/src/tracdap/rt/config/__init__.py index 0f124eb6c..98855835e 100644 --- a/tracdap-runtime/python/src/tracdap/rt/config/__init__.py +++ b/tracdap-runtime/python/src/tracdap/rt/config/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/ext/__init__.py b/tracdap-runtime/python/src/tracdap/rt/ext/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/src/tracdap/rt/ext/__init__.py +++ b/tracdap-runtime/python/src/tracdap/rt/ext/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/ext/embed.py b/tracdap-runtime/python/src/tracdap/rt/ext/embed.py index 090a50121..ac4e0369e 100644 --- a/tracdap-runtime/python/src/tracdap/rt/ext/embed.py +++ b/tracdap-runtime/python/src/tracdap/rt/ext/embed.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/ext/repos.py b/tracdap-runtime/python/src/tracdap/rt/ext/repos.py index 11c937835..b2fee1ae2 100644 --- a/tracdap-runtime/python/src/tracdap/rt/ext/repos.py +++ b/tracdap-runtime/python/src/tracdap/rt/ext/repos.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/ext/storage.py b/tracdap-runtime/python/src/tracdap/rt/ext/storage.py index bb85b6053..0d64f6f8a 100644 --- a/tracdap-runtime/python/src/tracdap/rt/ext/storage.py +++ b/tracdap-runtime/python/src/tracdap/rt/ext/storage.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/src/tracdap/rt/launch/launch.py b/tracdap-runtime/python/src/tracdap/rt/launch/launch.py index 16cb4048e..e662f77a1 100644 --- a/tracdap-runtime/python/src/tracdap/rt/launch/launch.py +++ b/tracdap-runtime/python/src/tracdap/rt/launch/launch.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_examples/test_tutorial.py b/tracdap-runtime/python/test/tracdap_examples/test_tutorial.py index efb569302..275a86ada 100644 --- a/tracdap-runtime/python/test/tracdap_examples/test_tutorial.py +++ b/tracdap-runtime/python/test/tracdap_examples/test_tutorial.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/__init__.py b/tracdap-runtime/python/test/tracdap_test/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test/tracdap_test/__init__.py +++ b/tracdap-runtime/python/test/tracdap_test/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/resources/__init__.py b/tracdap-runtime/python/test/tracdap_test/resources/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test/tracdap_test/resources/__init__.py +++ b/tracdap-runtime/python/test/tracdap_test/resources/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_data.py b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_data.py index 76b8fba4d..d55ee6c6d 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_data.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_data.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_models.py b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_models.py index 1dc265e41..34183be7c 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_models.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_models.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_repos.py b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_repos.py index 30d61159c..f64f20a0d 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_repos.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_repos.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_schemas.py b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_schemas.py index 388c73cd0..77e486fa2 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_schemas.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_schemas.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_shim_loader.py b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_shim_loader.py index 96909eef8..c47e99911 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/impl/test_shim_loader.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/impl/test_shim_loader.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/jobs/__init__.py b/tracdap-runtime/python/test/tracdap_test/rt/jobs/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/jobs/__init__.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/jobs/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_core_jobs.py b/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_core_jobs.py index 1a0d17744..8083625d7 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_core_jobs.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_core_jobs.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_embedded_jobs.py b/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_embedded_jobs.py index 70e1b532f..dbf092383 100644 --- a/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_embedded_jobs.py +++ b/tracdap-runtime/python/test/tracdap_test/rt/jobs/test_embedded_jobs.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1.py index dacd6d808..67f78e689 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/abs_module.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/abs_module.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/abs_module.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/abs1_/abs_module.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1.py index 79d4b0306..844528a41 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1/__init__.py index 8938a3c06..3008c1489 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/dup1/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1.py index 1a92789da..474c28c79 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/__init__.py index c4e622604..6600f4e74 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/pkg_module.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/pkg_module.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/pkg_module.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg1_/pkg_module.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2.py index 8572e757b..ae0ffb705 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/__init__.py index 9d143bff8..f56051573 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/pkg_module.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/pkg_module.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/pkg_module.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/pkg2_/pkg_module.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1.py index 7ba14576e..2d66834bd 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/rel_module.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/rel_module.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/rel_module.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel1_/rel_module.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2.py index 0694d76a7..f22698e62 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/rel_module.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/rel_module.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/rel_module.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel2_/rel_module.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3.py index 07ac16fd7..46f92c1ed 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/__init__.py index a360c8547..d5a69a43b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/rel_module.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/rel_module.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/rel_module.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/rel3_/rel_module.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/__init__.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/__init__.py index b9b34c143..42e3f9a7b 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/__init__.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/__init__.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/rel_included.py b/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/rel_included.py index ef6e5ddd8..1baabaae2 100644 --- a/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/rel_included.py +++ b/tracdap-runtime/python/test_data/shim_test/acme/rockets/sub2/rel_included.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 # diff --git a/tracdap-services/tracdap-svc-orch/src/test/resources/data_round_trip.py b/tracdap-services/tracdap-svc-orch/src/test/resources/data_round_trip.py index 93250bcfa..339ef6ab0 100644 --- a/tracdap-services/tracdap-svc-orch/src/test/resources/data_round_trip.py +++ b/tracdap-services/tracdap-svc-orch/src/test/resources/data_round_trip.py @@ -1,8 +1,9 @@ -# Copyright 2022 Accenture Global Solutions Limited -# -# Licensed 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 +# Licensed to the Fintech Open Source Foundation (FINOS) under one or +# more contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright ownership. +# FINOS 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 #