From 131fad1cf1c4e59e101de4b944e34915e83a2cd2 Mon Sep 17 00:00:00 2001 From: h1alexbel Date: Thu, 30 May 2024 14:17:51 +0300 Subject: [PATCH] feat(#507): license --- .../java/io/github/eocqrs/kafka/Consumer.java | 8 ++++--- .../github/eocqrs/kafka/ConsumerSettings.java | 8 ++++--- .../java/io/github/eocqrs/kafka/Data.java | 8 ++++--- .../java/io/github/eocqrs/kafka/Dataized.java | 8 ++++--- .../java/io/github/eocqrs/kafka/Message.java | 8 ++++--- .../java/io/github/eocqrs/kafka/Params.java | 9 +++++--- .../io/github/eocqrs/kafka/ParamsAttr.java | 9 +++++--- .../java/io/github/eocqrs/kafka/Producer.java | 8 ++++--- .../github/eocqrs/kafka/ProducerSettings.java | 8 ++++--- .../io/github/eocqrs/kafka/act/Action.java | 8 ++++--- .../eocqrs/kafka/act/AssignPartitions.java | 8 ++++--- .../github/eocqrs/kafka/act/CommitAsync.java | 8 ++++--- .../github/eocqrs/kafka/act/CommitSync.java | 8 ++++--- .../io/github/eocqrs/kafka/act/Wakeup.java | 8 ++++--- .../github/eocqrs/kafka/act/package-info.java | 8 ++++--- .../eocqrs/kafka/consumer/package-info.java | 8 ++++--- .../consumer/settings/KfConsumerParams.java | 23 +++++++++++++++++++ .../kafka/consumer/settings/package-info.java | 8 ++++--- .../io/github/eocqrs/kafka/data/KfData.java | 8 ++++--- .../github/eocqrs/kafka/data/KfDataized.java | 8 ++++--- .../github/eocqrs/kafka/data/Timestamped.java | 8 ++++--- .../java/io/github/eocqrs/kafka/data/Tkv.java | 8 ++++--- .../eocqrs/kafka/data/WithPartition.java | 8 ++++--- .../eocqrs/kafka/data/package-info.java | 8 ++++--- .../eocqrs/kafka/json/KfJsonFlexible.java | 8 ++++--- .../eocqrs/kafka/json/package-info.java | 8 ++++--- .../io/github/eocqrs/kafka/package-info.java | 8 ++++--- .../eocqrs/kafka/producer/KfCallback.java | 2 +- .../eocqrs/kafka/producer/KfProducer.java | 8 ++++--- .../eocqrs/kafka/producer/package-info.java | 8 ++++--- .../producer/settings/KfProducerParams.java | 8 ++++--- .../kafka/producer/settings/package-info.java | 8 ++++--- .../kafka/xml/ConsumerXmlMapParams.java | 8 ++++--- .../github/eocqrs/kafka/xml/KfCustomer.java | 8 ++++--- .../eocqrs/kafka/xml/KfXmlFlexible.java | 8 ++++--- .../eocqrs/kafka/xml/NameInCamelCase.java | 8 ++++--- .../kafka/xml/ProducerXmlMapParams.java | 8 ++++--- .../io/github/eocqrs/kafka/xml/TextXpath.java | 8 ++++--- .../github/eocqrs/kafka/xml/XmlMapParams.java | 8 ++++--- .../github/eocqrs/kafka/xml/package-info.java | 8 ++++--- .../kafka/yaml/KfYamlConsumerSettings.java | 8 ++++--- .../kafka/yaml/KfYamlProducerSettings.java | 8 ++++--- .../eocqrs/kafka/yaml/YamlMapParams.java | 8 ++++--- .../eocqrs/kafka/yaml/package-info.java | 8 ++++--- 44 files changed, 236 insertions(+), 127 deletions(-) diff --git a/src/main/java/io/github/eocqrs/kafka/Consumer.java b/src/main/java/io/github/eocqrs/kafka/Consumer.java index 5b416a31..6cfed711 100644 --- a/src/main/java/io/github/eocqrs/kafka/Consumer.java +++ b/src/main/java/io/github/eocqrs/kafka/Consumer.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/ConsumerSettings.java b/src/main/java/io/github/eocqrs/kafka/ConsumerSettings.java index 58a86f94..d069552a 100644 --- a/src/main/java/io/github/eocqrs/kafka/ConsumerSettings.java +++ b/src/main/java/io/github/eocqrs/kafka/ConsumerSettings.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/Data.java b/src/main/java/io/github/eocqrs/kafka/Data.java index 5726e390..65fa406a 100644 --- a/src/main/java/io/github/eocqrs/kafka/Data.java +++ b/src/main/java/io/github/eocqrs/kafka/Data.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/Dataized.java b/src/main/java/io/github/eocqrs/kafka/Dataized.java index edac0c3d..b4b00911 100644 --- a/src/main/java/io/github/eocqrs/kafka/Dataized.java +++ b/src/main/java/io/github/eocqrs/kafka/Dataized.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/Message.java b/src/main/java/io/github/eocqrs/kafka/Message.java index 0283a2b3..b4067fec 100644 --- a/src/main/java/io/github/eocqrs/kafka/Message.java +++ b/src/main/java/io/github/eocqrs/kafka/Message.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/Params.java b/src/main/java/io/github/eocqrs/kafka/Params.java index 038dae8e..2f1bb085 100644 --- a/src/main/java/io/github/eocqrs/kafka/Params.java +++ b/src/main/java/io/github/eocqrs/kafka/Params.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -19,6 +21,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ + package io.github.eocqrs.kafka; import java.util.Collection; diff --git a/src/main/java/io/github/eocqrs/kafka/ParamsAttr.java b/src/main/java/io/github/eocqrs/kafka/ParamsAttr.java index 38f57c8b..7bba545e 100644 --- a/src/main/java/io/github/eocqrs/kafka/ParamsAttr.java +++ b/src/main/java/io/github/eocqrs/kafka/ParamsAttr.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, @@ -19,6 +21,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ + package io.github.eocqrs.kafka; import org.cactoos.Scalar; diff --git a/src/main/java/io/github/eocqrs/kafka/Producer.java b/src/main/java/io/github/eocqrs/kafka/Producer.java index 549dcc46..e06a1d7c 100644 --- a/src/main/java/io/github/eocqrs/kafka/Producer.java +++ b/src/main/java/io/github/eocqrs/kafka/Producer.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/ProducerSettings.java b/src/main/java/io/github/eocqrs/kafka/ProducerSettings.java index 3b11a850..f08fbc7d 100644 --- a/src/main/java/io/github/eocqrs/kafka/ProducerSettings.java +++ b/src/main/java/io/github/eocqrs/kafka/ProducerSettings.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/act/Action.java b/src/main/java/io/github/eocqrs/kafka/act/Action.java index d3621388..c36adf1f 100644 --- a/src/main/java/io/github/eocqrs/kafka/act/Action.java +++ b/src/main/java/io/github/eocqrs/kafka/act/Action.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/act/AssignPartitions.java b/src/main/java/io/github/eocqrs/kafka/act/AssignPartitions.java index 6fc84cdd..f6f2da96 100644 --- a/src/main/java/io/github/eocqrs/kafka/act/AssignPartitions.java +++ b/src/main/java/io/github/eocqrs/kafka/act/AssignPartitions.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/act/CommitAsync.java b/src/main/java/io/github/eocqrs/kafka/act/CommitAsync.java index 0a984b93..272ac615 100644 --- a/src/main/java/io/github/eocqrs/kafka/act/CommitAsync.java +++ b/src/main/java/io/github/eocqrs/kafka/act/CommitAsync.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/act/CommitSync.java b/src/main/java/io/github/eocqrs/kafka/act/CommitSync.java index 2c38b37c..9c387b98 100644 --- a/src/main/java/io/github/eocqrs/kafka/act/CommitSync.java +++ b/src/main/java/io/github/eocqrs/kafka/act/CommitSync.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/act/Wakeup.java b/src/main/java/io/github/eocqrs/kafka/act/Wakeup.java index 2c44cbaa..eaf6b6b5 100644 --- a/src/main/java/io/github/eocqrs/kafka/act/Wakeup.java +++ b/src/main/java/io/github/eocqrs/kafka/act/Wakeup.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/act/package-info.java b/src/main/java/io/github/eocqrs/kafka/act/package-info.java index 087083c8..11560ad4 100644 --- a/src/main/java/io/github/eocqrs/kafka/act/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/act/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/consumer/package-info.java b/src/main/java/io/github/eocqrs/kafka/consumer/package-info.java index a4f3a404..28af2d94 100644 --- a/src/main/java/io/github/eocqrs/kafka/consumer/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/consumer/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParams.java b/src/main/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParams.java index e171ae22..adb11903 100644 --- a/src/main/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParams.java +++ b/src/main/java/io/github/eocqrs/kafka/consumer/settings/KfConsumerParams.java @@ -1,3 +1,26 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ package io.github.eocqrs.kafka.consumer.settings; import io.github.eocqrs.kafka.Params; diff --git a/src/main/java/io/github/eocqrs/kafka/consumer/settings/package-info.java b/src/main/java/io/github/eocqrs/kafka/consumer/settings/package-info.java index b9124333..890983e9 100644 --- a/src/main/java/io/github/eocqrs/kafka/consumer/settings/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/consumer/settings/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/data/KfData.java b/src/main/java/io/github/eocqrs/kafka/data/KfData.java index 1223b99c..3d4812ac 100644 --- a/src/main/java/io/github/eocqrs/kafka/data/KfData.java +++ b/src/main/java/io/github/eocqrs/kafka/data/KfData.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/data/KfDataized.java b/src/main/java/io/github/eocqrs/kafka/data/KfDataized.java index 38988ae9..e6176987 100644 --- a/src/main/java/io/github/eocqrs/kafka/data/KfDataized.java +++ b/src/main/java/io/github/eocqrs/kafka/data/KfDataized.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/data/Timestamped.java b/src/main/java/io/github/eocqrs/kafka/data/Timestamped.java index dbe6956e..2b5ec6e0 100644 --- a/src/main/java/io/github/eocqrs/kafka/data/Timestamped.java +++ b/src/main/java/io/github/eocqrs/kafka/data/Timestamped.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/data/Tkv.java b/src/main/java/io/github/eocqrs/kafka/data/Tkv.java index e82e20dc..0dac2b7f 100644 --- a/src/main/java/io/github/eocqrs/kafka/data/Tkv.java +++ b/src/main/java/io/github/eocqrs/kafka/data/Tkv.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/data/WithPartition.java b/src/main/java/io/github/eocqrs/kafka/data/WithPartition.java index 0ff5ba39..c1992998 100644 --- a/src/main/java/io/github/eocqrs/kafka/data/WithPartition.java +++ b/src/main/java/io/github/eocqrs/kafka/data/WithPartition.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/data/package-info.java b/src/main/java/io/github/eocqrs/kafka/data/package-info.java index d4bda2d8..65674aac 100644 --- a/src/main/java/io/github/eocqrs/kafka/data/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/data/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/json/KfJsonFlexible.java b/src/main/java/io/github/eocqrs/kafka/json/KfJsonFlexible.java index c06da02e..1dfa7faa 100644 --- a/src/main/java/io/github/eocqrs/kafka/json/KfJsonFlexible.java +++ b/src/main/java/io/github/eocqrs/kafka/json/KfJsonFlexible.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/json/package-info.java b/src/main/java/io/github/eocqrs/kafka/json/package-info.java index 05f7227c..d43d27c8 100644 --- a/src/main/java/io/github/eocqrs/kafka/json/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/json/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/package-info.java b/src/main/java/io/github/eocqrs/kafka/package-info.java index f530f3d9..5c1712b6 100644 --- a/src/main/java/io/github/eocqrs/kafka/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/producer/KfCallback.java b/src/main/java/io/github/eocqrs/kafka/producer/KfCallback.java index 4b28850e..b630b487 100644 --- a/src/main/java/io/github/eocqrs/kafka/producer/KfCallback.java +++ b/src/main/java/io/github/eocqrs/kafka/producer/KfCallback.java @@ -1,7 +1,7 @@ /* * The MIT License (MIT) * - * Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/io/github/eocqrs/kafka/producer/KfProducer.java b/src/main/java/io/github/eocqrs/kafka/producer/KfProducer.java index f6a375cb..829f7bad 100644 --- a/src/main/java/io/github/eocqrs/kafka/producer/KfProducer.java +++ b/src/main/java/io/github/eocqrs/kafka/producer/KfProducer.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/producer/package-info.java b/src/main/java/io/github/eocqrs/kafka/producer/package-info.java index bb5dbce0..ef9c5b47 100644 --- a/src/main/java/io/github/eocqrs/kafka/producer/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/producer/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/producer/settings/KfProducerParams.java b/src/main/java/io/github/eocqrs/kafka/producer/settings/KfProducerParams.java index 27701966..8fc8c44b 100644 --- a/src/main/java/io/github/eocqrs/kafka/producer/settings/KfProducerParams.java +++ b/src/main/java/io/github/eocqrs/kafka/producer/settings/KfProducerParams.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/producer/settings/package-info.java b/src/main/java/io/github/eocqrs/kafka/producer/settings/package-info.java index f9506aba..bd368c14 100644 --- a/src/main/java/io/github/eocqrs/kafka/producer/settings/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/producer/settings/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParams.java b/src/main/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParams.java index 4097c4d2..2a9fef02 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParams.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/ConsumerXmlMapParams.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/KfCustomer.java b/src/main/java/io/github/eocqrs/kafka/xml/KfCustomer.java index 8a7c3f4e..243f9793 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/KfCustomer.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/KfCustomer.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/KfXmlFlexible.java b/src/main/java/io/github/eocqrs/kafka/xml/KfXmlFlexible.java index 33353150..374d08ec 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/KfXmlFlexible.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/KfXmlFlexible.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/NameInCamelCase.java b/src/main/java/io/github/eocqrs/kafka/xml/NameInCamelCase.java index a1e83448..32bcf2f3 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/NameInCamelCase.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/NameInCamelCase.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParams.java b/src/main/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParams.java index 267a75d9..4f6c7735 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParams.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/ProducerXmlMapParams.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/TextXpath.java b/src/main/java/io/github/eocqrs/kafka/xml/TextXpath.java index d1e91e15..1d41c4d0 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/TextXpath.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/TextXpath.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/XmlMapParams.java b/src/main/java/io/github/eocqrs/kafka/xml/XmlMapParams.java index d1d326ec..19f9285d 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/XmlMapParams.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/XmlMapParams.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/xml/package-info.java b/src/main/java/io/github/eocqrs/kafka/xml/package-info.java index f2cdef1b..fee8e103 100644 --- a/src/main/java/io/github/eocqrs/kafka/xml/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/xml/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettings.java b/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettings.java index de362650..0b7991c2 100644 --- a/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettings.java +++ b/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlConsumerSettings.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettings.java b/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettings.java index bf720d16..f02b69fd 100644 --- a/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettings.java +++ b/src/main/java/io/github/eocqrs/kafka/yaml/KfYamlProducerSettings.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/yaml/YamlMapParams.java b/src/main/java/io/github/eocqrs/kafka/yaml/YamlMapParams.java index bc77ef75..94446f43 100644 --- a/src/main/java/io/github/eocqrs/kafka/yaml/YamlMapParams.java +++ b/src/main/java/io/github/eocqrs/kafka/yaml/YamlMapParams.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/io/github/eocqrs/kafka/yaml/package-info.java b/src/main/java/io/github/eocqrs/kafka/yaml/package-info.java index e9ac3f72..ea8194d7 100644 --- a/src/main/java/io/github/eocqrs/kafka/yaml/package-info.java +++ b/src/main/java/io/github/eocqrs/kafka/yaml/package-info.java @@ -1,5 +1,7 @@ /* - * Copyright (c) 2022 Aliaksei Bialiauski, EO-CQRS + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -8,8 +10,8 @@ * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,