From 73d129e0daa03ab426d6703ca4ece179e15204ed Mon Sep 17 00:00:00 2001 From: Martin Traverse Date: Thu, 7 Nov 2024 11:35:31 +0000 Subject: [PATCH] Update license headers - /* comments, 2024 --- examples/apps/javascript/src/error_handling.js | 11 ++++++----- .../src/main/proto/tracdap/api/error.proto | 11 ++++++----- .../common/exception/EConsistencyValidation.java | 11 ++++++----- .../common/exception/EExecutorTemporaryFailure.java | 11 ++++++----- .../java/org/finos/tracdap/common/graph/Graph.java | 11 ++++++----- .../org/finos/tracdap/common/graph/GraphBuilder.java | 11 ++++++----- .../org/finos/tracdap/common/graph/GraphSection.java | 11 ++++++----- .../java/org/finos/tracdap/common/graph/Node.java | 11 ++++++----- .../java/org/finos/tracdap/common/graph/NodeId.java | 11 ++++++----- .../org/finos/tracdap/common/graph/NodeMetadata.java | 11 ++++++----- .../org/finos/tracdap/common/graph/NodeNamespace.java | 11 ++++++----- .../java/org/finos/tracdap/common/graph/SocketId.java | 11 ++++++----- .../finos/tracdap/common/grpc/GrpcChannelFactory.java | 11 ++++++----- .../finos/tracdap/common/metadata/MetadataBundle.java | 11 ++++++----- .../tracdap/common/netty/EventLoopInterceptor.java | 11 ++++++----- .../tracdap/common/netty/EventLoopOffloadTracker.java | 11 ++++++----- .../finos/tracdap/common/netty/EventLoopResolver.java | 11 ++++++----- .../tracdap/common/netty/EventLoopScheduler.java | 11 ++++++----- .../org/finos/tracdap/common/netty/NettyHelpers.java | 11 ++++++----- .../common/netty/NettyThreadFactoryWrapper.java | 11 ++++++----- .../common/netty/ThreadPoolRejectionHandler.java | 11 ++++++----- .../org/finos/tracdap/common/util/RoutingUtils.java | 11 ++++++----- .../org/finos/tracdap/common/exec/BatchConfig.java | 11 ++++++----- .../finos/tracdap/common/exec/BatchJobExecutor.java | 11 ++++++----- .../org/finos/tracdap/common/exec/BatchJobState.java | 11 ++++++----- .../org/finos/tracdap/common/exec/IJobExecutor.java | 11 ++++++----- .../consistency/JobConsistencyValidator.java | 11 ++++++----- .../consistency/ModelConsistencyValidator.java | 11 ++++++----- tracdap-plugins/sql-drivers/build.gradle | 11 ++++++----- tracdap-plugins/sql-drivers/drivers.gradle | 11 ++++++----- tracdap-plugins/sql-drivers/flyway.gradle | 11 ++++++----- .../tracdap/plugins/ssh/executor/SshExecutor.java | 11 ++++++----- .../plugins/ssh/executor/SshExecutorPlugin.java | 11 ++++++----- .../plugins/ssh/executor/SshExecutorState.java | 11 ++++++----- .../plugins/ssh/executor/SshExecutorBasicTest.java | 11 ++++++----- .../tracdap/gateway/builders/RedirectBuilder.java | 11 ++++++----- .../tracdap/gateway/builders/RestApiBuilder.java | 11 ++++++----- .../finos/tracdap/gateway/builders/RouteBuilder.java | 11 ++++++----- .../finos/tracdap/gateway/builders/ServiceInfo.java | 11 ++++++----- .../java/org/finos/tracdap/gateway/exec/Redirect.java | 11 ++++++----- .../tracdap/svc/meta/api/InfoAndResourcesTest.java | 11 ++++++----- .../finos/tracdap/svc/orch/api/JobValidationTest.java | 11 ++++++----- .../finos/tracdap/svc/orch/test/UnitTestExecutor.java | 11 ++++++----- .../tracdap/svc/orch/test/UnitTestExecutorPlugin.java | 11 ++++++----- .../tracdap/svc/orch/test/UnitTestExecutorState.java | 11 ++++++----- 45 files changed, 270 insertions(+), 225 deletions(-) diff --git a/examples/apps/javascript/src/error_handling.js b/examples/apps/javascript/src/error_handling.js index daadccd51..3b4e7765a 100644 --- a/examples/apps/javascript/src/error_handling.js +++ b/examples/apps/javascript/src/error_handling.js @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-api/tracdap-services/src/main/proto/tracdap/api/error.proto b/tracdap-api/tracdap-services/src/main/proto/tracdap/api/error.proto index 5140e55da..a7c78c7b8 100644 --- a/tracdap-api/tracdap-services/src/main/proto/tracdap/api/error.proto +++ b/tracdap-api/tracdap-services/src/main/proto/tracdap/api/error.proto @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EConsistencyValidation.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EConsistencyValidation.java index 330f9dda6..77b29284a 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EConsistencyValidation.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EConsistencyValidation.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EExecutorTemporaryFailure.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EExecutorTemporaryFailure.java index 11ca315c3..5d159d367 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EExecutorTemporaryFailure.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/exception/EExecutorTemporaryFailure.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Graph.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Graph.java index 744e9bbe0..f63052887 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Graph.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Graph.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphBuilder.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphBuilder.java index e52da2435..0ef7506db 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphBuilder.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphBuilder.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphSection.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphSection.java index 35ba632ed..402f92e53 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphSection.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/GraphSection.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Node.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Node.java index 74805a0a2..97ee85bb7 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Node.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/Node.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeId.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeId.java index 6445de63e..6c856f09b 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeId.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeId.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeMetadata.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeMetadata.java index c2a7b2848..a18c55c1e 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeMetadata.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeMetadata.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeNamespace.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeNamespace.java index 75a5149ee..45d57fc88 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeNamespace.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/NodeNamespace.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/SocketId.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/SocketId.java index ee00652cf..adc8f888c 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/SocketId.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/graph/SocketId.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/grpc/GrpcChannelFactory.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/grpc/GrpcChannelFactory.java index a6959d9ed..223f32938 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/grpc/GrpcChannelFactory.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/grpc/GrpcChannelFactory.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/metadata/MetadataBundle.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/metadata/MetadataBundle.java index e57f1c0be..30ee048b1 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/metadata/MetadataBundle.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/metadata/MetadataBundle.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopInterceptor.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopInterceptor.java index 580e6d6a7..e159bc506 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopInterceptor.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopInterceptor.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopOffloadTracker.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopOffloadTracker.java index 6145ab8eb..b1e5e6afd 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopOffloadTracker.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopOffloadTracker.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopResolver.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopResolver.java index 3b8a29e0b..b065daf03 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopResolver.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopResolver.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopScheduler.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopScheduler.java index 355f2c3d3..2f18e1103 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopScheduler.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/EventLoopScheduler.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyHelpers.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyHelpers.java index 670a475b9..4a93b3880 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyHelpers.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyHelpers.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyThreadFactoryWrapper.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyThreadFactoryWrapper.java index 17169807b..572b7954a 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyThreadFactoryWrapper.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/NettyThreadFactoryWrapper.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/ThreadPoolRejectionHandler.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/ThreadPoolRejectionHandler.java index 2fd76d581..0afd5572f 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/ThreadPoolRejectionHandler.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/netty/ThreadPoolRejectionHandler.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/util/RoutingUtils.java b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/util/RoutingUtils.java index 26c19af99..5a6e209e9 100644 --- a/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/util/RoutingUtils.java +++ b/tracdap-libs/tracdap-lib-common/src/main/java/org/finos/tracdap/common/util/RoutingUtils.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchConfig.java b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchConfig.java index 808a1300f..d4661e27c 100644 --- a/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchConfig.java +++ b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchConfig.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobExecutor.java b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobExecutor.java index b4e50d1b3..cf255527c 100644 --- a/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobExecutor.java +++ b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobExecutor.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobState.java b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobState.java index 5101b7a02..89597bd22 100644 --- a/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobState.java +++ b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/BatchJobState.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/IJobExecutor.java b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/IJobExecutor.java index 0a1acd129..c79fa8e2f 100644 --- a/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/IJobExecutor.java +++ b/tracdap-libs/tracdap-lib-orch/src/main/java/org/finos/tracdap/common/exec/IJobExecutor.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/JobConsistencyValidator.java b/tracdap-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/JobConsistencyValidator.java index d006d283f..b327d4e73 100644 --- a/tracdap-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/JobConsistencyValidator.java +++ b/tracdap-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/JobConsistencyValidator.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/ModelConsistencyValidator.java b/tracdap-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/ModelConsistencyValidator.java index daf103311..e6db81e23 100644 --- a/tracdap-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/ModelConsistencyValidator.java +++ b/tracdap-libs/tracdap-lib-validation/src/main/java/org/finos/tracdap/common/validation/consistency/ModelConsistencyValidator.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/sql-drivers/build.gradle b/tracdap-plugins/sql-drivers/build.gradle index 3c44eaea2..ffba83533 100644 --- a/tracdap-plugins/sql-drivers/build.gradle +++ b/tracdap-plugins/sql-drivers/build.gradle @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/sql-drivers/drivers.gradle b/tracdap-plugins/sql-drivers/drivers.gradle index eba06fc40..083bec1c4 100644 --- a/tracdap-plugins/sql-drivers/drivers.gradle +++ b/tracdap-plugins/sql-drivers/drivers.gradle @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/sql-drivers/flyway.gradle b/tracdap-plugins/sql-drivers/flyway.gradle index 79746dc12..9c9a900b5 100644 --- a/tracdap-plugins/sql-drivers/flyway.gradle +++ b/tracdap-plugins/sql-drivers/flyway.gradle @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutor.java b/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutor.java index f74c96160..613d9ba27 100644 --- a/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutor.java +++ b/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutor.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorPlugin.java b/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorPlugin.java index 885ebe961..725df617b 100644 --- a/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorPlugin.java +++ b/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorPlugin.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorState.java b/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorState.java index 29540b87d..2fc7b2bca 100644 --- a/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorState.java +++ b/tracdap-plugins/ssh-executor/src/main/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorState.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-plugins/ssh-executor/src/test/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorBasicTest.java b/tracdap-plugins/ssh-executor/src/test/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorBasicTest.java index e3e18bead..4f9940420 100644 --- a/tracdap-plugins/ssh-executor/src/test/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorBasicTest.java +++ b/tracdap-plugins/ssh-executor/src/test/java/org/finos/tracdap/plugins/ssh/executor/SshExecutorBasicTest.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-gateway/src/main/java/org/finos/tracdap/gateway/builders/RedirectBuilder.java b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RedirectBuilder.java index d5d1f2071..ac90e4fbc 100644 --- a/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RedirectBuilder.java +++ b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RedirectBuilder.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-gateway/src/main/java/org/finos/tracdap/gateway/builders/RestApiBuilder.java b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RestApiBuilder.java index f97ebff8e..ce5b1b0f6 100644 --- a/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RestApiBuilder.java +++ b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RestApiBuilder.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-gateway/src/main/java/org/finos/tracdap/gateway/builders/RouteBuilder.java b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RouteBuilder.java index 2d027ca36..070e0b17a 100644 --- a/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RouteBuilder.java +++ b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/RouteBuilder.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-gateway/src/main/java/org/finos/tracdap/gateway/builders/ServiceInfo.java b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/ServiceInfo.java index 2de465318..e0794f156 100644 --- a/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/ServiceInfo.java +++ b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/builders/ServiceInfo.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-gateway/src/main/java/org/finos/tracdap/gateway/exec/Redirect.java b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/exec/Redirect.java index 907aa343a..e6449a1e8 100644 --- a/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/exec/Redirect.java +++ b/tracdap-services/tracdap-gateway/src/main/java/org/finos/tracdap/gateway/exec/Redirect.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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-meta/src/test/java/org/finos/tracdap/svc/meta/api/InfoAndResourcesTest.java b/tracdap-services/tracdap-svc-meta/src/test/java/org/finos/tracdap/svc/meta/api/InfoAndResourcesTest.java index e6cbf40fc..931338016 100644 --- a/tracdap-services/tracdap-svc-meta/src/test/java/org/finos/tracdap/svc/meta/api/InfoAndResourcesTest.java +++ b/tracdap-services/tracdap-svc-meta/src/test/java/org/finos/tracdap/svc/meta/api/InfoAndResourcesTest.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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/java/org/finos/tracdap/svc/orch/api/JobValidationTest.java b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/api/JobValidationTest.java index 91dcf3a01..e8a5d3b89 100644 --- a/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/api/JobValidationTest.java +++ b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/api/JobValidationTest.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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/java/org/finos/tracdap/svc/orch/test/UnitTestExecutor.java b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutor.java index b4389f1f9..e0515673d 100644 --- a/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutor.java +++ b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutor.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorPlugin.java b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorPlugin.java index 641b9de05..c2112f539 100644 --- a/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorPlugin.java +++ b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorPlugin.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorState.java b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorState.java index f8a73b016..2f4d00271 100644 --- a/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorState.java +++ b/tracdap-services/tracdap-svc-orch/src/test/java/org/finos/tracdap/svc/orch/test/UnitTestExecutorState.java @@ -1,9 +1,10 @@ /* - * Copyright 2024 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 *