tracdap-runtime 0.6.6__tar.gz → 0.7.0__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.
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/LICENSE +1 -1
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/PKG-INFO +2 -2
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/setup.cfg +2 -2
- tracdap_runtime-0.7.0/src/tracdap/rt/__init__.py +16 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/actors.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/context.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/dev_mode.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/engine.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/functions.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/graph.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/graph_builder.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/runtime.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/server.py +6 -5
- tracdap_runtime-0.7.0/src/tracdap/rt/_impl/__init__.py +15 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/config_parser.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/data.py +6 -5
- tracdap_runtime-0.7.0/src/tracdap/rt/_impl/ext/__init__.py +14 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/ext/sql.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/ext/storage.py +6 -5
- tracdap_runtime-0.7.0/src/tracdap/rt/_impl/grpc/__init__.py +14 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/codec.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/guard_rails.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/models.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/repos.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/schemas.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/shim.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/static_api.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/storage.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/type_system.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/util.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/validation.py +6 -5
- tracdap_runtime-0.7.0/src/tracdap/rt/_plugins/__init__.py +15 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/_helpers.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/config_local.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/format_arrow.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/format_csv.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/format_parquet.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/repo_git.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/repo_local.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/repo_pypi.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/storage_aws.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/storage_azure.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/storage_gcp.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/storage_local.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/storage_sql.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_plugins/storage_sql_dialects.py +6 -5
- tracdap_runtime-0.7.0/src/tracdap/rt/_version.py +16 -0
- tracdap_runtime-0.7.0/src/tracdap/rt/api/__init__.py +48 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/api/experimental.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/api/hook.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/api/model_api.py +110 -90
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/api/static_api.py +142 -100
- tracdap_runtime-0.7.0/src/tracdap/rt/config/common.py +83 -0
- tracdap_runtime-0.7.0/src/tracdap/rt/config/job.py +22 -0
- tracdap_runtime-0.7.0/src/tracdap/rt/config/platform.py +158 -0
- tracdap_runtime-0.7.0/src/tracdap/rt/config/result.py +26 -0
- tracdap_runtime-0.7.0/src/tracdap/rt/config/runtime.py +28 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/exceptions.py +13 -7
- tracdap_runtime-0.7.0/src/tracdap/rt/ext/__init__.py +14 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/ext/config.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/ext/embed.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/ext/plugins.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/ext/repos.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/ext/storage.py +6 -5
- tracdap_runtime-0.7.0/src/tracdap/rt/launch/__init__.py +21 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/launch/__main__.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/launch/cli.py +6 -5
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/launch/launch.py +38 -15
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/common.py +2 -3
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/custom.py +3 -4
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/data.py +30 -31
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/file.py +6 -7
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/flow.py +22 -23
- tracdap_runtime-0.7.0/src/tracdap/rt/metadata/job.py +252 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/model.py +26 -27
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/object.py +11 -12
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/object_id.py +23 -24
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/resource.py +0 -1
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/search.py +15 -16
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/stoarge.py +22 -23
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/tag.py +8 -9
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/tag_update.py +11 -12
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/type.py +38 -38
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/tracdap_runtime.egg-info/PKG-INFO +2 -2
- tracdap_runtime-0.6.6/src/tracdap/rt/__init__.py +0 -15
- tracdap_runtime-0.6.6/src/tracdap/rt/_impl/__init__.py +0 -14
- tracdap_runtime-0.6.6/src/tracdap/rt/_impl/ext/__init__.py +0 -13
- tracdap_runtime-0.6.6/src/tracdap/rt/_impl/grpc/__init__.py +0 -13
- tracdap_runtime-0.6.6/src/tracdap/rt/_plugins/__init__.py +0 -14
- tracdap_runtime-0.6.6/src/tracdap/rt/_version.py +0 -15
- tracdap_runtime-0.6.6/src/tracdap/rt/api/__init__.py +0 -30
- tracdap_runtime-0.6.6/src/tracdap/rt/config/common.py +0 -84
- tracdap_runtime-0.6.6/src/tracdap/rt/config/job.py +0 -23
- tracdap_runtime-0.6.6/src/tracdap/rt/config/platform.py +0 -159
- tracdap_runtime-0.6.6/src/tracdap/rt/config/result.py +0 -27
- tracdap_runtime-0.6.6/src/tracdap/rt/config/runtime.py +0 -29
- tracdap_runtime-0.6.6/src/tracdap/rt/ext/__init__.py +0 -13
- tracdap_runtime-0.6.6/src/tracdap/rt/launch/__init__.py +0 -16
- tracdap_runtime-0.6.6/src/tracdap/rt/metadata/job.py +0 -253
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/README.md +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/pyproject.toml +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_exec/__init__.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/resource_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/resource_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/config/__init__.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/src/tracdap/rt/metadata/__init__.py +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/tracdap_runtime.egg-info/SOURCES.txt +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/tracdap_runtime.egg-info/dependency_links.txt +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/tracdap_runtime.egg-info/requires.txt +0 -0
- {tracdap_runtime-0.6.6 → tracdap_runtime-0.7.0}/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
|
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.
|
3
|
+
Version: 0.7.0
|
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
|
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.
|
3
|
+
version = 0.7.0
|
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
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
-
#
|
2
|
-
#
|
3
|
-
#
|
4
|
-
#
|
5
|
-
#
|
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
|
#
|