tracdap-runtime 0.6.6__tar.gz → 0.7.0rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/LICENSE +1 -1
  2. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/PKG-INFO +2 -2
  3. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/setup.cfg +2 -2
  4. tracdap_runtime-0.7.0rc1/src/tracdap/rt/__init__.py +16 -0
  5. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/actors.py +6 -5
  6. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/context.py +6 -5
  7. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/dev_mode.py +6 -5
  8. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/engine.py +6 -5
  9. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/functions.py +6 -5
  10. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/graph.py +6 -5
  11. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/graph_builder.py +6 -5
  12. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/runtime.py +6 -5
  13. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/server.py +6 -5
  14. tracdap_runtime-0.7.0rc1/src/tracdap/rt/_impl/__init__.py +15 -0
  15. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/config_parser.py +6 -5
  16. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/data.py +6 -5
  17. tracdap_runtime-0.7.0rc1/src/tracdap/rt/_impl/ext/__init__.py +14 -0
  18. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/ext/sql.py +6 -5
  19. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/ext/storage.py +6 -5
  20. tracdap_runtime-0.7.0rc1/src/tracdap/rt/_impl/grpc/__init__.py +14 -0
  21. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/codec.py +6 -5
  22. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/guard_rails.py +6 -5
  23. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/models.py +6 -5
  24. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/repos.py +6 -5
  25. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/schemas.py +6 -5
  26. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/shim.py +6 -5
  27. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/static_api.py +6 -5
  28. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/storage.py +6 -5
  29. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/type_system.py +6 -5
  30. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/util.py +6 -5
  31. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/validation.py +6 -5
  32. tracdap_runtime-0.7.0rc1/src/tracdap/rt/_plugins/__init__.py +15 -0
  33. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/_helpers.py +6 -5
  34. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/config_local.py +6 -5
  35. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/format_arrow.py +6 -5
  36. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/format_csv.py +6 -5
  37. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/format_parquet.py +6 -5
  38. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/repo_git.py +6 -5
  39. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/repo_local.py +6 -5
  40. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/repo_pypi.py +6 -5
  41. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/storage_aws.py +6 -5
  42. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/storage_azure.py +6 -5
  43. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/storage_gcp.py +6 -5
  44. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/storage_local.py +6 -5
  45. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/storage_sql.py +6 -5
  46. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_plugins/storage_sql_dialects.py +6 -5
  47. tracdap_runtime-0.7.0rc1/src/tracdap/rt/_version.py +16 -0
  48. tracdap_runtime-0.7.0rc1/src/tracdap/rt/api/__init__.py +48 -0
  49. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/api/experimental.py +6 -5
  50. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/api/hook.py +6 -5
  51. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/api/model_api.py +110 -90
  52. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/api/static_api.py +142 -100
  53. tracdap_runtime-0.7.0rc1/src/tracdap/rt/config/common.py +83 -0
  54. tracdap_runtime-0.7.0rc1/src/tracdap/rt/config/job.py +22 -0
  55. tracdap_runtime-0.7.0rc1/src/tracdap/rt/config/platform.py +158 -0
  56. tracdap_runtime-0.7.0rc1/src/tracdap/rt/config/result.py +26 -0
  57. tracdap_runtime-0.7.0rc1/src/tracdap/rt/config/runtime.py +28 -0
  58. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/exceptions.py +13 -7
  59. tracdap_runtime-0.7.0rc1/src/tracdap/rt/ext/__init__.py +14 -0
  60. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/ext/config.py +6 -5
  61. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/ext/embed.py +6 -5
  62. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/ext/plugins.py +6 -5
  63. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/ext/repos.py +6 -5
  64. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/ext/storage.py +6 -5
  65. tracdap_runtime-0.7.0rc1/src/tracdap/rt/launch/__init__.py +21 -0
  66. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/launch/__main__.py +6 -5
  67. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/launch/cli.py +6 -5
  68. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/launch/launch.py +38 -15
  69. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/common.py +2 -3
  70. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/custom.py +3 -4
  71. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/data.py +30 -31
  72. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/file.py +6 -7
  73. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/flow.py +22 -23
  74. tracdap_runtime-0.7.0rc1/src/tracdap/rt/metadata/job.py +252 -0
  75. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/model.py +26 -27
  76. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/object.py +11 -12
  77. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/object_id.py +23 -24
  78. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/resource.py +0 -1
  79. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/search.py +15 -16
  80. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/stoarge.py +22 -23
  81. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/tag.py +8 -9
  82. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/tag_update.py +11 -12
  83. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/type.py +38 -38
  84. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/tracdap_runtime.egg-info/PKG-INFO +2 -2
  85. tracdap_runtime-0.6.6/src/tracdap/rt/__init__.py +0 -15
  86. tracdap_runtime-0.6.6/src/tracdap/rt/_impl/__init__.py +0 -14
  87. tracdap_runtime-0.6.6/src/tracdap/rt/_impl/ext/__init__.py +0 -13
  88. tracdap_runtime-0.6.6/src/tracdap/rt/_impl/grpc/__init__.py +0 -13
  89. tracdap_runtime-0.6.6/src/tracdap/rt/_plugins/__init__.py +0 -14
  90. tracdap_runtime-0.6.6/src/tracdap/rt/_version.py +0 -15
  91. tracdap_runtime-0.6.6/src/tracdap/rt/api/__init__.py +0 -30
  92. tracdap_runtime-0.6.6/src/tracdap/rt/config/common.py +0 -84
  93. tracdap_runtime-0.6.6/src/tracdap/rt/config/job.py +0 -23
  94. tracdap_runtime-0.6.6/src/tracdap/rt/config/platform.py +0 -159
  95. tracdap_runtime-0.6.6/src/tracdap/rt/config/result.py +0 -27
  96. tracdap_runtime-0.6.6/src/tracdap/rt/config/runtime.py +0 -29
  97. tracdap_runtime-0.6.6/src/tracdap/rt/ext/__init__.py +0 -13
  98. tracdap_runtime-0.6.6/src/tracdap/rt/launch/__init__.py +0 -16
  99. tracdap_runtime-0.6.6/src/tracdap/rt/metadata/job.py +0 -253
  100. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/README.md +0 -0
  101. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/pyproject.toml +0 -0
  102. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_exec/__init__.py +0 -0
  103. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +0 -0
  104. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +0 -0
  105. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +0 -0
  106. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py +0 -0
  107. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi +0 -0
  108. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py +0 -0
  109. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi +0 -0
  110. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +0 -0
  111. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi +0 -0
  112. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py +0 -0
  113. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi +0 -0
  114. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py +0 -0
  115. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi +0 -0
  116. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py +0 -0
  117. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi +0 -0
  118. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +0 -0
  119. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +0 -0
  120. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py +0 -0
  121. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi +0 -0
  122. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +0 -0
  123. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +0 -0
  124. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/resource_pb2.py +0 -0
  125. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/resource_pb2.pyi +0 -0
  126. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py +0 -0
  127. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi +0 -0
  128. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py +0 -0
  129. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi +0 -0
  130. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py +0 -0
  131. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi +0 -0
  132. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py +0 -0
  133. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi +0 -0
  134. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py +0 -0
  135. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi +0 -0
  136. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/config/__init__.py +0 -0
  137. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/src/tracdap/rt/metadata/__init__.py +0 -0
  138. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/tracdap_runtime.egg-info/SOURCES.txt +0 -0
  139. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/tracdap_runtime.egg-info/dependency_links.txt +0 -0
  140. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/tracdap_runtime.egg-info/requires.txt +0 -0
  141. {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0rc1}/tracdap_runtime.egg-info/top_level.txt +0 -0
@@ -187,7 +187,7 @@
187
187
  same "printed page" as the copyright notice for easier
188
188
  identification within third-party archives.
189
189
 
190
- Copyright 2022 Accenture Global Solutions Limited
190
+ Copyright [yyyy] [name of copyright owner]
191
191
 
192
192
  Licensed under the Apache License, Version 2.0 (the "License");
193
193
  you may not use this file except in compliance with the License.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tracdap-runtime
3
- Version: 0.6.6
3
+ Version: 0.7.0rc1
4
4
  Summary: Runtime package for building models on the TRAC Data & Analytics Platform
5
5
  Home-page: https://tracdap.finos.org/
6
6
  Author: Martin Traverse
7
- Author-email: martin.traverse@accenture.com
7
+ Author-email: martin@fintrac.co.uk
8
8
  License: Apache-2.0
9
9
  Project-URL: Documentation, https://tracdap.readthedocs.io/
10
10
  Project-URL: Source Code, https://github.com/finos/tracdap
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = tracdap-runtime
3
- version = 0.6.6
3
+ version = 0.7.0rc1
4
4
  description = Runtime package for building models on the TRAC Data & Analytics Platform
5
5
  long_description = file: README.md
6
6
  long_description_content_type = text/markdown
@@ -16,7 +16,7 @@ classifiers =
16
16
  License :: OSI Approved :: Apache Software License
17
17
  Operating System :: OS Independent
18
18
  author = Martin Traverse
19
- author_email = martin.traverse@accenture.com
19
+ author_email = martin@fintrac.co.uk
20
20
 
21
21
  [options]
22
22
  packages =
@@ -0,0 +1,16 @@
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ from ._version import __version__
@@ -1,8 +1,9 @@
1
- # Copyright 2021 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -0,0 +1,15 @@
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -0,0 +1,14 @@
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -0,0 +1,14 @@
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -0,0 +1,15 @@
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #