From 887a5d0cabb11b58b708ef3a28a117b33035fcbd Mon Sep 17 00:00:00 2001 From: Loes Immens Date: Thu, 3 Oct 2024 10:03:35 +0200 Subject: [PATCH] FDP-2318: fixed copyright text used Signed-off-by: Loes Immens --- .../kotlin/com/gxf/utilities/kafka/avro/AvroDeserializer.kt | 2 +- .../src/main/kotlin/com/gxf/utilities/kafka/avro/AvroEncoder.kt | 2 +- .../main/kotlin/com/gxf/utilities/kafka/avro/AvroSerializer.kt | 2 +- .../kotlin/com/gxf/utilities/kafka/avro/AvroDeserializerTest.kt | 2 +- .../test/kotlin/com/gxf/utilities/kafka/avro/AvroEncoderTest.kt | 2 +- .../kotlin/com/gxf/utilities/kafka/avro/AvroSerializerTest.kt | 2 +- .../gxf/utilities/kafka/oauth/handler/KafkaOAuthException.kt | 2 +- .../kafka/oauth/handler/OAuthAuthenticateCallbackHandler.kt | 2 +- .../kafka/oauth/handler/OAuthAuthenticateCallbackHandlerTest.kt | 2 +- .../com/gxf/utilities/kafka/message/signing/MessageSigner.kt | 2 +- .../kafka/message/signing/MessageSigningAutoConfiguration.kt | 2 +- .../utilities/kafka/message/signing/MessageSigningProperties.kt | 2 +- .../kafka/message/signing/UncheckedSecurityException.kt | 2 +- .../utilities/kafka/message/wrapper/SignableMessageWrapper.kt | 2 +- .../gxf/utilities/kafka/message/signing/MessageSignerTest.kt | 2 +- .../message/signing/MessageSigningAutoConfigurationTest.kt | 2 +- .../com/gxf/utilities/spring/oauth/NoTokenProviderTest.kt | 2 +- .../com/gxf/utilities/spring/oauth/OAuthTokenProviderTest.kt | 2 +- .../com/gxf/utilities/spring/oauth/OAuthTokenClientContext.kt | 2 +- .../com/gxf/utilities/spring/oauth/config/OAuthClientConfig.kt | 2 +- .../gxf/utilities/spring/oauth/config/OAuthClientProperties.kt | 2 +- .../utilities/spring/oauth/config/condition/OAuthCondition.kt | 2 +- .../spring/oauth/config/condition/OAuthDisabledCondition.kt | 2 +- .../spring/oauth/config/condition/OAuthEnabledCondition.kt | 2 +- .../utilities/spring/oauth/exceptions/OAuthTokenException.kt | 2 +- .../com/gxf/utilities/spring/oauth/providers/NoTokenProvider.kt | 2 +- .../gxf/utilities/spring/oauth/providers/OAuthTokenProvider.kt | 2 +- .../com/gxf/utilities/spring/oauth/providers/TokenProvider.kt | 2 +- .../gxf/utilities/spring/oauth/config/OAuthClientConfigTest.kt | 2 +- 29 files changed, 29 insertions(+), 29 deletions(-) diff --git a/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializer.kt b/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializer.kt index 08df5ca..4856f20 100644 --- a/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializer.kt +++ b/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializer.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.avro diff --git a/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroEncoder.kt b/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroEncoder.kt index b1d2590..c3a143b 100644 --- a/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroEncoder.kt +++ b/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroEncoder.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.avro diff --git a/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroSerializer.kt b/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroSerializer.kt index a8da05e..599854b 100644 --- a/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroSerializer.kt +++ b/kafka-avro/src/main/kotlin/com/gxf/utilities/kafka/avro/AvroSerializer.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.avro diff --git a/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializerTest.kt b/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializerTest.kt index 2443b5f..7f3a2cb 100644 --- a/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializerTest.kt +++ b/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroDeserializerTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.avro diff --git a/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroEncoderTest.kt b/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroEncoderTest.kt index 793ddee..fc025e0 100644 --- a/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroEncoderTest.kt +++ b/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroEncoderTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.avro diff --git a/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroSerializerTest.kt b/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroSerializerTest.kt index b4add06..35b1133 100644 --- a/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroSerializerTest.kt +++ b/kafka-avro/src/test/kotlin/com/gxf/utilities/kafka/avro/AvroSerializerTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.avro diff --git a/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/KafkaOAuthException.kt b/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/KafkaOAuthException.kt index 37617a6..f47f729 100644 --- a/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/KafkaOAuthException.kt +++ b/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/KafkaOAuthException.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.oauth.handler diff --git a/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandler.kt b/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandler.kt index 8e96afc..a36ee08 100644 --- a/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandler.kt +++ b/kafka-azure-oauth/src/main/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandler.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.oauth.handler diff --git a/kafka-azure-oauth/src/test/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandlerTest.kt b/kafka-azure-oauth/src/test/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandlerTest.kt index c9649a6..71e57f0 100644 --- a/kafka-azure-oauth/src/test/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandlerTest.kt +++ b/kafka-azure-oauth/src/test/kotlin/com/gxf/utilities/kafka/oauth/handler/OAuthAuthenticateCallbackHandlerTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.oauth.handler diff --git a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigner.kt b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigner.kt index 80d1efa..590374d 100644 --- a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigner.kt +++ b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigner.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.signing diff --git a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfiguration.kt b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfiguration.kt index 293ddb6..c61a78a 100644 --- a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfiguration.kt +++ b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfiguration.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.signing diff --git a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningProperties.kt b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningProperties.kt index 83d53d8..03b64b0 100644 --- a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningProperties.kt +++ b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningProperties.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.signing diff --git a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/UncheckedSecurityException.kt b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/UncheckedSecurityException.kt index ba518aa..71096c6 100644 --- a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/UncheckedSecurityException.kt +++ b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/signing/UncheckedSecurityException.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.signing diff --git a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/wrapper/SignableMessageWrapper.kt b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/wrapper/SignableMessageWrapper.kt index d6d35a3..7033ae7 100644 --- a/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/wrapper/SignableMessageWrapper.kt +++ b/kafka-message-signing/src/main/kotlin/com/gxf/utilities/kafka/message/wrapper/SignableMessageWrapper.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.wrapper diff --git a/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSignerTest.kt b/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSignerTest.kt index d9921a8..8027201 100644 --- a/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSignerTest.kt +++ b/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSignerTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.signing diff --git a/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfigurationTest.kt b/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfigurationTest.kt index 52fe3b8..5cfec14 100644 --- a/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfigurationTest.kt +++ b/kafka-message-signing/src/test/kotlin/com/gxf/utilities/kafka/message/signing/MessageSigningAutoConfigurationTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.kafka.message.signing diff --git a/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/NoTokenProviderTest.kt b/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/NoTokenProviderTest.kt index bcbfb1d..a4688aa 100644 --- a/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/NoTokenProviderTest.kt +++ b/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/NoTokenProviderTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth diff --git a/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenProviderTest.kt b/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenProviderTest.kt index cb272c5..75cf390 100644 --- a/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenProviderTest.kt +++ b/oauth-token-client/src/integrationTest/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenProviderTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenClientContext.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenClientContext.kt index 4a6f737..781603b 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenClientContext.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/OAuthTokenClientContext.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfig.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfig.kt index e4aab41..3f42b5a 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfig.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfig.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.config diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientProperties.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientProperties.kt index 7ed20cc..4274062 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientProperties.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientProperties.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.config diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthCondition.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthCondition.kt index c0c6b6e..7edc9f2 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthCondition.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthCondition.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.config.condition diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthDisabledCondition.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthDisabledCondition.kt index 4b133f2..dfb08a9 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthDisabledCondition.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthDisabledCondition.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.config.condition diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthEnabledCondition.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthEnabledCondition.kt index e694919..80e91f2 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthEnabledCondition.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/config/condition/OAuthEnabledCondition.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.config.condition diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/exceptions/OAuthTokenException.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/exceptions/OAuthTokenException.kt index 9bca94d..c491a70 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/exceptions/OAuthTokenException.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/exceptions/OAuthTokenException.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.exceptions diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/NoTokenProvider.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/NoTokenProvider.kt index 131901b..0d02244 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/NoTokenProvider.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/NoTokenProvider.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.providers diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/OAuthTokenProvider.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/OAuthTokenProvider.kt index 287e1a3..ddb26f4 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/OAuthTokenProvider.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/OAuthTokenProvider.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.providers diff --git a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/TokenProvider.kt b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/TokenProvider.kt index a9638bc..5cfe1af 100644 --- a/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/TokenProvider.kt +++ b/oauth-token-client/src/main/kotlin/com/gxf/utilities/spring/oauth/providers/TokenProvider.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.providers diff --git a/oauth-token-client/src/test/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfigTest.kt b/oauth-token-client/src/test/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfigTest.kt index db90465..0aa19c0 100644 --- a/oauth-token-client/src/test/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfigTest.kt +++ b/oauth-token-client/src/test/kotlin/com/gxf/utilities/spring/oauth/config/OAuthClientConfigTest.kt @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Contributors to the GXF project +// SPDX-FileCopyrightText: Copyright Contributors to the GXF project // // SPDX-License-Identifier: Apache-2.0 package com.gxf.utilities.spring.oauth.config