From ab75210854e06dff39469bd0a42b8c45ebf826ed Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Mon, 8 Feb 2021 22:03:08 +0100 Subject: [PATCH] Update year in license header --- LICENSE.md | 2 +- README.md | 2 +- .../archetype-resources/src/main/java/HelloWorldRule.java | 2 +- .../resources/archetype-resources/src/main/java/Launcher.java | 2 +- .../src/main/java/org/jeasy/rules/annotation/Action.java | 2 +- .../src/main/java/org/jeasy/rules/annotation/Condition.java | 2 +- .../src/main/java/org/jeasy/rules/annotation/Fact.java | 2 +- .../src/main/java/org/jeasy/rules/annotation/Priority.java | 2 +- .../src/main/java/org/jeasy/rules/annotation/Rule.java | 2 +- .../src/main/java/org/jeasy/rules/annotation/package-info.java | 2 +- easy-rules-core/src/main/java/org/jeasy/rules/api/Action.java | 2 +- .../src/main/java/org/jeasy/rules/api/Condition.java | 2 +- easy-rules-core/src/main/java/org/jeasy/rules/api/Fact.java | 2 +- easy-rules-core/src/main/java/org/jeasy/rules/api/Facts.java | 2 +- easy-rules-core/src/main/java/org/jeasy/rules/api/Rule.java | 2 +- .../src/main/java/org/jeasy/rules/api/RuleListener.java | 2 +- easy-rules-core/src/main/java/org/jeasy/rules/api/Rules.java | 2 +- .../src/main/java/org/jeasy/rules/api/RulesEngine.java | 2 +- .../src/main/java/org/jeasy/rules/api/RulesEngineListener.java | 2 +- .../main/java/org/jeasy/rules/api/RulesEngineParameters.java | 2 +- .../src/main/java/org/jeasy/rules/api/package-info.java | 2 +- .../src/main/java/org/jeasy/rules/core/AbstractRulesEngine.java | 2 +- .../main/java/org/jeasy/rules/core/ActionMethodOrderBean.java | 2 +- .../src/main/java/org/jeasy/rules/core/BasicRule.java | 2 +- .../src/main/java/org/jeasy/rules/core/DefaultRule.java | 2 +- .../src/main/java/org/jeasy/rules/core/DefaultRulesEngine.java | 2 +- .../main/java/org/jeasy/rules/core/InferenceRulesEngine.java | 2 +- .../src/main/java/org/jeasy/rules/core/NoSuchFactException.java | 2 +- .../src/main/java/org/jeasy/rules/core/RuleBuilder.java | 2 +- .../main/java/org/jeasy/rules/core/RuleDefinitionValidator.java | 2 +- .../src/main/java/org/jeasy/rules/core/RuleProxy.java | 2 +- easy-rules-core/src/main/java/org/jeasy/rules/core/Utils.java | 2 +- .../src/main/java/org/jeasy/rules/core/package-info.java | 2 +- ...uleWithActionMethodHavingMoreThanOneArgumentOfTypeFacts.java | 2 +- ...atedRuleWithActionMethodHavingOneArgumentNotOfTypeFacts.java | 2 +- ...notatedRuleWithActionMethodHavingOneArgumentOfTypeFacts.java | 2 +- .../AnnotatedRuleWithActionMethodThatReturnsNonVoidType.java | 2 +- ...otatedRuleWithConditionMethodHavingNonBooleanReturnType.java | 2 +- ...dRuleWithConditionMethodHavingOneArgumentNotOfTypeFacts.java | 2 +- .../rules/annotation/AnnotatedRuleWithMetaRuleAnnotation.java | 2 +- .../annotation/AnnotatedRuleWithMoreThanOnePriorityMethod.java | 2 +- ...ultipleAnnotatedParametersAndOneParameterOfSubTypeFacts.java | 2 +- ...thMultipleAnnotatedParametersAndOneParameterOfTypeFacts.java | 2 +- .../annotation/AnnotatedRuleWithNonPublicActionMethod.java | 2 +- .../annotation/AnnotatedRuleWithNonPublicConditionMethod.java | 2 +- .../annotation/AnnotatedRuleWithNonPublicPriorityMethod.java | 2 +- ...leWithOneParameterNotAnnotatedWithFactAndNotOfTypeFacts.java | 2 +- .../AnnotatedRuleWithPriorityMethodHavingArguments.java | 2 +- ...notatedRuleWithPriorityMethodHavingNonIntegerReturnType.java | 2 +- .../rules/annotation/AnnotatedRuleWithoutActionMethod.java | 2 +- .../rules/annotation/AnnotatedRuleWithoutConditionMethod.java | 2 +- .../src/test/java/org/jeasy/rules/annotation/MetaRule.java | 2 +- .../src/test/java/org/jeasy/rules/api/FactsTest.java | 2 +- .../src/test/java/org/jeasy/rules/api/RulesTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/AbstractTest.java | 2 +- .../java/org/jeasy/rules/core/AnnotationInheritanceTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/BasicRuleTest.java | 2 +- .../test/java/org/jeasy/rules/core/CustomRuleOrderingTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/DefaultRuleTest.java | 2 +- .../test/java/org/jeasy/rules/core/DefaultRulesEngineTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/FactInjectionTest.java | 2 +- .../java/org/jeasy/rules/core/InferenceRulesEngineTest.java | 2 +- .../jeasy/rules/core/MissingFactAnnotationParameterTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/RuleBuilderTest.java | 2 +- .../java/org/jeasy/rules/core/RuleDefinitionValidatorTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/RuleListenerTest.java | 2 +- .../java/org/jeasy/rules/core/RulePriorityThresholdTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/RuleProxyTest.java | 2 +- .../test/java/org/jeasy/rules/core/RulesEngineListenerTest.java | 2 +- .../java/org/jeasy/rules/core/SkipOnFirstAppliedRuleTest.java | 2 +- .../java/org/jeasy/rules/core/SkipOnFirstFailedRuleTest.java | 2 +- .../org/jeasy/rules/core/SkipOnFirstNonTriggeredRuleTest.java | 2 +- .../src/test/java/org/jeasy/rules/core/UtilsTest.java | 2 +- .../src/main/java/org/jeasy/rules/jexl/JexlAction.java | 2 +- .../src/main/java/org/jeasy/rules/jexl/JexlCondition.java | 2 +- .../src/main/java/org/jeasy/rules/jexl/JexlRule.java | 2 +- .../src/main/java/org/jeasy/rules/jexl/JexlRuleFactory.java | 2 +- .../src/main/java/org/jeasy/rules/jexl/package-info.java | 2 +- .../src/test/java/org/jeasy/rules/jexl/JexlActionTest.java | 2 +- .../src/test/java/org/jeasy/rules/jexl/JexlConditionTest.java | 2 +- .../src/test/java/org/jeasy/rules/jexl/JexlRuleFactoryTest.java | 2 +- .../src/test/java/org/jeasy/rules/jexl/JexlRuleTest.java | 2 +- easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/Person.java | 2 +- .../src/main/java/org/jeasy/rules/mvel/MVELAction.java | 2 +- .../src/main/java/org/jeasy/rules/mvel/MVELCondition.java | 2 +- .../src/main/java/org/jeasy/rules/mvel/MVELRule.java | 2 +- .../src/main/java/org/jeasy/rules/mvel/MVELRuleFactory.java | 2 +- .../src/main/java/org/jeasy/rules/mvel/package-info.java | 2 +- .../src/test/java/org/jeasy/rules/mvel/MVELActionTest.java | 2 +- .../src/test/java/org/jeasy/rules/mvel/MVELConditionTest.java | 2 +- .../src/test/java/org/jeasy/rules/mvel/MVELRuleFactoryTest.java | 2 +- .../src/test/java/org/jeasy/rules/mvel/MVELRuleTest.java | 2 +- easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/Person.java | 2 +- .../src/main/java/org/jeasy/rules/spel/SpELAction.java | 2 +- .../src/main/java/org/jeasy/rules/spel/SpELCondition.java | 2 +- .../src/main/java/org/jeasy/rules/spel/SpELRule.java | 2 +- .../src/main/java/org/jeasy/rules/spel/SpELRuleFactory.java | 2 +- .../src/main/java/org/jeasy/rules/spel/package-info.java | 2 +- easy-rules-spel/src/test/java/org/jeasy/rules/spel/Greeter.java | 2 +- .../src/test/java/org/jeasy/rules/spel/MySpringAppConfig.java | 2 +- easy-rules-spel/src/test/java/org/jeasy/rules/spel/Person.java | 2 +- .../src/test/java/org/jeasy/rules/spel/SimpleBeanResolver.java | 2 +- .../src/test/java/org/jeasy/rules/spel/SpELActionTest.java | 2 +- .../src/test/java/org/jeasy/rules/spel/SpELConditionTest.java | 2 +- .../src/test/java/org/jeasy/rules/spel/SpELRuleFactoryTest.java | 2 +- .../src/test/java/org/jeasy/rules/spel/SpELRuleTest.java | 2 +- .../main/java/org/jeasy/rules/support/AbstractRuleFactory.java | 2 +- .../src/main/java/org/jeasy/rules/support/RuleDefinition.java | 2 +- .../org/jeasy/rules/support/composite/ActivationRuleGroup.java | 2 +- .../java/org/jeasy/rules/support/composite/CompositeRule.java | 2 +- .../org/jeasy/rules/support/composite/ConditionalRuleGroup.java | 2 +- .../java/org/jeasy/rules/support/composite/UnitRuleGroup.java | 2 +- .../rules/support/reader/AbstractRuleDefinitionReader.java | 2 +- .../jeasy/rules/support/reader/JsonRuleDefinitionReader.java | 2 +- .../org/jeasy/rules/support/reader/RuleDefinitionReader.java | 2 +- .../jeasy/rules/support/reader/YamlRuleDefinitionReader.java | 2 +- .../jeasy/rules/support/composite/ActivationRuleGroupTest.java | 2 +- .../jeasy/rules/support/composite/ConditionalRuleGroupTest.java | 2 +- .../org/jeasy/rules/support/composite/UnitRuleGroupTest.java | 2 +- .../jeasy/rules/support/reader/RuleDefinitionReaderTest.java | 2 +- .../jeasy/rules/tutorials/airco/DecreaseTemperatureAction.java | 2 +- .../jeasy/rules/tutorials/airco/HighTemperatureCondition.java | 2 +- .../src/main/java/org/jeasy/rules/tutorials/airco/Launcher.java | 2 +- .../main/java/org/jeasy/rules/tutorials/fizzbuzz/BuzzRule.java | 2 +- .../main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzz.java | 2 +- .../java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzRule.java | 2 +- .../jeasy/rules/tutorials/fizzbuzz/FizzBuzzWithEasyRules.java | 2 +- .../main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzRule.java | 2 +- .../org/jeasy/rules/tutorials/fizzbuzz/NonFizzBuzzRule.java | 2 +- .../org/jeasy/rules/tutorials/helloworld/HelloWorldRule.java | 2 +- .../java/org/jeasy/rules/tutorials/helloworld/Launcher.java | 2 +- .../src/main/java/org/jeasy/rules/tutorials/shop/Launcher.java | 2 +- .../src/main/java/org/jeasy/rules/tutorials/shop/Person.java | 2 +- .../main/java/org/jeasy/rules/tutorials/weather/Launcher.java | 2 +- .../java/org/jeasy/rules/tutorials/weather/WeatherRule.java | 2 +- .../main/java/org/jeasy/rules/tutorials/web/IndexServlet.java | 2 +- .../org/jeasy/rules/tutorials/web/SuspiciousRequestFilter.java | 2 +- .../org/jeasy/rules/tutorials/web/SuspiciousRequestRule.java | 2 +- 138 files changed, 138 insertions(+), 138 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 3bada78..3ef47d1 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) +Copyright (c) 2021 Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) 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/README.md b/README.md index 0c7dbd3..541b32a 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ Easy Rules is released under the terms of the MIT license: ``` The MIT License (MIT) -Copyright (c) 2020 Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) +Copyright (c) 2021 Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) 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/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/HelloWorldRule.java b/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/HelloWorldRule.java index 0645fc2..29f7492 100644 --- a/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/HelloWorldRule.java +++ b/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/HelloWorldRule.java @@ -1,7 +1,7 @@ /** * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/Launcher.java b/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/Launcher.java index 9dbefb2..178b74e 100644 --- a/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/Launcher.java +++ b/easy-rules-archetype/src/main/resources/archetype-resources/src/main/java/Launcher.java @@ -1,7 +1,7 @@ /** * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Action.java b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Action.java index b4b480d..b01dd39 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Action.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Action.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Condition.java b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Condition.java index 5850205..0953aa0 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Condition.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Condition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Fact.java b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Fact.java index 90dca23..912d479 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Fact.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Fact.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Priority.java b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Priority.java index e3e10dc..e6ada30 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Priority.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Priority.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Rule.java b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Rule.java index 7895fd4..cfe0b8a 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Rule.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/Rule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/annotation/package-info.java b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/package-info.java index e44e8c7..a5d5ea0 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/annotation/package-info.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/annotation/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/Action.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/Action.java index ca10dcd..368c5b9 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/Action.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/Action.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/Condition.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/Condition.java index 5a7b237..bdd66d2 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/Condition.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/Condition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/Fact.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/Fact.java index 486a934..3e23622 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/Fact.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/Fact.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/Facts.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/Facts.java index 698916c..28e4d65 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/Facts.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/Facts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/Rule.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/Rule.java index 57449d5..1587281 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/Rule.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/Rule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/RuleListener.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/RuleListener.java index d02751f..94bb1de 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/RuleListener.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/RuleListener.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/Rules.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/Rules.java index 0d10591..98a1607 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/Rules.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/Rules.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngine.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngine.java index 6ca9fc3..0dd845b 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngine.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngine.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineListener.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineListener.java index 688c154..dc48e84 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineListener.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineListener.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineParameters.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineParameters.java index 3724c9b..0b147e4 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineParameters.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/RulesEngineParameters.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/api/package-info.java b/easy-rules-core/src/main/java/org/jeasy/rules/api/package-info.java index 350033f..cad9d0f 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/api/package-info.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/api/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/AbstractRulesEngine.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/AbstractRulesEngine.java index a6f48da..b3049c7 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/AbstractRulesEngine.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/AbstractRulesEngine.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/ActionMethodOrderBean.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/ActionMethodOrderBean.java index ae41aff..86fba03 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/ActionMethodOrderBean.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/ActionMethodOrderBean.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/BasicRule.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/BasicRule.java index 2b1bfdd..06c3924 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/BasicRule.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/BasicRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRule.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRule.java index da7a766..a806501 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRule.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRulesEngine.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRulesEngine.java index 9905fbe..4aa0c85 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRulesEngine.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/DefaultRulesEngine.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/InferenceRulesEngine.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/InferenceRulesEngine.java index 98581ec..6999d50 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/InferenceRulesEngine.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/InferenceRulesEngine.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/NoSuchFactException.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/NoSuchFactException.java index bd077b6..81c8618 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/NoSuchFactException.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/NoSuchFactException.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleBuilder.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleBuilder.java index 60c0090..15e44e3 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleBuilder.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleBuilder.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleDefinitionValidator.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleDefinitionValidator.java index 4041a67..7511879 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleDefinitionValidator.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleDefinitionValidator.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleProxy.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleProxy.java index 0e68454..399ef8f 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleProxy.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/RuleProxy.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/Utils.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/Utils.java index c3ab7e5..26a92bd 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/Utils.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/Utils.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/main/java/org/jeasy/rules/core/package-info.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/package-info.java index c6d0994..3d82cc2 100644 --- a/easy-rules-core/src/main/java/org/jeasy/rules/core/package-info.java +++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingMoreThanOneArgumentOfTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingMoreThanOneArgumentOfTypeFacts.java index 9db0230..60f2a45 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingMoreThanOneArgumentOfTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingMoreThanOneArgumentOfTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentNotOfTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentNotOfTypeFacts.java index 8b97c97..2439a21 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentNotOfTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentNotOfTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentOfTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentOfTypeFacts.java index d50da1f..e9cbb05 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentOfTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodHavingOneArgumentOfTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodThatReturnsNonVoidType.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodThatReturnsNonVoidType.java index 2b2d3d5..8f9d9fc 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodThatReturnsNonVoidType.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithActionMethodThatReturnsNonVoidType.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingNonBooleanReturnType.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingNonBooleanReturnType.java index dfde354..a5f74d3 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingNonBooleanReturnType.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingNonBooleanReturnType.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingOneArgumentNotOfTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingOneArgumentNotOfTypeFacts.java index c5fab46..a7bcbbb 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingOneArgumentNotOfTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithConditionMethodHavingOneArgumentNotOfTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMetaRuleAnnotation.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMetaRuleAnnotation.java index f81787a..85e7573 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMetaRuleAnnotation.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMetaRuleAnnotation.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMoreThanOnePriorityMethod.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMoreThanOnePriorityMethod.java index cdd53ec..68b6bd1 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMoreThanOnePriorityMethod.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMoreThanOnePriorityMethod.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfSubTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfSubTypeFacts.java index 5a99230..9b64ab0 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfSubTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfSubTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfTypeFacts.java index 348e632..7bd5945 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithMultipleAnnotatedParametersAndOneParameterOfTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicActionMethod.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicActionMethod.java index b0567b6..a49c399 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicActionMethod.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicActionMethod.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicConditionMethod.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicConditionMethod.java index 3d6c028..9a910c6 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicConditionMethod.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicConditionMethod.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicPriorityMethod.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicPriorityMethod.java index f03ce48..4fbc8ba 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicPriorityMethod.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithNonPublicPriorityMethod.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithOneParameterNotAnnotatedWithFactAndNotOfTypeFacts.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithOneParameterNotAnnotatedWithFactAndNotOfTypeFacts.java index 60c330f..32dd15e 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithOneParameterNotAnnotatedWithFactAndNotOfTypeFacts.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithOneParameterNotAnnotatedWithFactAndNotOfTypeFacts.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingArguments.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingArguments.java index dd3109f..ef75466 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingArguments.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingArguments.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingNonIntegerReturnType.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingNonIntegerReturnType.java index 059c601..46f8ba7 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingNonIntegerReturnType.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithPriorityMethodHavingNonIntegerReturnType.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutActionMethod.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutActionMethod.java index bee213d..9c62753 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutActionMethod.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutActionMethod.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutConditionMethod.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutConditionMethod.java index 6e4dd13..58dd30f 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutConditionMethod.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/AnnotatedRuleWithoutConditionMethod.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/annotation/MetaRule.java b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/MetaRule.java index 3a55fad..237c223 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/annotation/MetaRule.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/annotation/MetaRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/api/FactsTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/api/FactsTest.java index 3727452..4953f43 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/api/FactsTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/api/FactsTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/api/RulesTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/api/RulesTest.java index 63beb90..42b1337 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/api/RulesTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/api/RulesTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/AbstractTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/AbstractTest.java index 36fe6a6..01022e1 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/AbstractTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/AbstractTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/AnnotationInheritanceTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/AnnotationInheritanceTest.java index fa3abe8..80959bb 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/AnnotationInheritanceTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/AnnotationInheritanceTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/BasicRuleTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/BasicRuleTest.java index f3e7194..9b01fe5 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/BasicRuleTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/BasicRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/CustomRuleOrderingTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/CustomRuleOrderingTest.java index 9e1e538..b89ee15 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/CustomRuleOrderingTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/CustomRuleOrderingTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRuleTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRuleTest.java index 8ad27b0..7e4fc18 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRuleTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRulesEngineTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRulesEngineTest.java index f25a8b3..a314559 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRulesEngineTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/DefaultRulesEngineTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/FactInjectionTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/FactInjectionTest.java index 601be36..c8a06ad 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/FactInjectionTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/FactInjectionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/InferenceRulesEngineTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/InferenceRulesEngineTest.java index c97ab41..2a2129d 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/InferenceRulesEngineTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/InferenceRulesEngineTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/MissingFactAnnotationParameterTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/MissingFactAnnotationParameterTest.java index cb9aa2f..8ffafab 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/MissingFactAnnotationParameterTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/MissingFactAnnotationParameterTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleBuilderTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleBuilderTest.java index 810dc9a..153f2a1 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleBuilderTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleBuilderTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleDefinitionValidatorTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleDefinitionValidatorTest.java index e85c901..62ca305 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleDefinitionValidatorTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleDefinitionValidatorTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleListenerTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleListenerTest.java index a8be3b6..9e56932 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleListenerTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleListenerTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/RulePriorityThresholdTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/RulePriorityThresholdTest.java index 3745551..78a1d21 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/RulePriorityThresholdTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/RulePriorityThresholdTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleProxyTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleProxyTest.java index f825bea..a89ba50 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleProxyTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/RuleProxyTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/RulesEngineListenerTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/RulesEngineListenerTest.java index 0401940..cf6111e 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/RulesEngineListenerTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/RulesEngineListenerTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstAppliedRuleTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstAppliedRuleTest.java index 13b0573..cf85462 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstAppliedRuleTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstAppliedRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstFailedRuleTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstFailedRuleTest.java index d984cf6..371414a 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstFailedRuleTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstFailedRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstNonTriggeredRuleTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstNonTriggeredRuleTest.java index 8cc39e4..8a91e80 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstNonTriggeredRuleTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/SkipOnFirstNonTriggeredRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-core/src/test/java/org/jeasy/rules/core/UtilsTest.java b/easy-rules-core/src/test/java/org/jeasy/rules/core/UtilsTest.java index ef6fb1b..febb9a6 100644 --- a/easy-rules-core/src/test/java/org/jeasy/rules/core/UtilsTest.java +++ b/easy-rules-core/src/test/java/org/jeasy/rules/core/UtilsTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlAction.java b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlAction.java index 84fd15c..9c23c03 100644 --- a/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlAction.java +++ b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlAction.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlCondition.java b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlCondition.java index 5b31aed..cce77dc 100644 --- a/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlCondition.java +++ b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlCondition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRule.java b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRule.java index 3a5690a..6a2f478 100644 --- a/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRule.java +++ b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRuleFactory.java b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRuleFactory.java index 4b2df9b..9f1d303 100644 --- a/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRuleFactory.java +++ b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/JexlRuleFactory.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/package-info.java b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/package-info.java index cb1c7ce..ba4271e 100644 --- a/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/package-info.java +++ b/easy-rules-jexl/src/main/java/org/jeasy/rules/jexl/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlActionTest.java b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlActionTest.java index f462bf5..343f9d0 100644 --- a/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlActionTest.java +++ b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlActionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlConditionTest.java b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlConditionTest.java index 080e6b4..05ee987 100644 --- a/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlConditionTest.java +++ b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlConditionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleFactoryTest.java b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleFactoryTest.java index a5e094d..ad4d959 100644 --- a/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleFactoryTest.java +++ b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleFactoryTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleTest.java b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleTest.java index eb378f6..c7a198f 100644 --- a/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleTest.java +++ b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/JexlRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/Person.java b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/Person.java index e4a37cc..a5a1091 100644 --- a/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/Person.java +++ b/easy-rules-jexl/src/test/java/org/jeasy/rules/jexl/Person.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELAction.java b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELAction.java index 8003f06..0230e98 100644 --- a/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELAction.java +++ b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELAction.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELCondition.java b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELCondition.java index b7c0bd6..d919053 100644 --- a/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELCondition.java +++ b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELCondition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRule.java b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRule.java index 41f0eb3..c742822 100644 --- a/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRule.java +++ b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRuleFactory.java b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRuleFactory.java index 77dce84..3858b8c 100644 --- a/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRuleFactory.java +++ b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/MVELRuleFactory.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/package-info.java b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/package-info.java index cc802c9..506a861 100644 --- a/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/package-info.java +++ b/easy-rules-mvel/src/main/java/org/jeasy/rules/mvel/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELActionTest.java b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELActionTest.java index ec23a7b..932b7aa 100644 --- a/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELActionTest.java +++ b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELActionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELConditionTest.java b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELConditionTest.java index 4c1c9f0..1d8d1a0 100644 --- a/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELConditionTest.java +++ b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELConditionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleFactoryTest.java b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleFactoryTest.java index 056f31f..01048b4 100644 --- a/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleFactoryTest.java +++ b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleFactoryTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleTest.java b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleTest.java index 5f8397c..f9ca99b 100644 --- a/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleTest.java +++ b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/MVELRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/Person.java b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/Person.java index 35cb9b1..69e865f 100644 --- a/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/Person.java +++ b/easy-rules-mvel/src/test/java/org/jeasy/rules/mvel/Person.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELAction.java b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELAction.java index 23de61e..a23692f 100644 --- a/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELAction.java +++ b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELAction.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELCondition.java b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELCondition.java index 948fc58..33785c3 100644 --- a/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELCondition.java +++ b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELCondition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRule.java b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRule.java index 74cbde7..3480812 100644 --- a/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRule.java +++ b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRuleFactory.java b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRuleFactory.java index 9827cc6..3515cfc 100644 --- a/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRuleFactory.java +++ b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/SpELRuleFactory.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/main/java/org/jeasy/rules/spel/package-info.java b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/package-info.java index 79f339d..d3bad7b 100644 --- a/easy-rules-spel/src/main/java/org/jeasy/rules/spel/package-info.java +++ b/easy-rules-spel/src/main/java/org/jeasy/rules/spel/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Greeter.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Greeter.java index d867ded..21f0003 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Greeter.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Greeter.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/MySpringAppConfig.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/MySpringAppConfig.java index 863e182..bda8d81 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/MySpringAppConfig.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/MySpringAppConfig.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Person.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Person.java index bf5c636..4a36a84 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Person.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/Person.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SimpleBeanResolver.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SimpleBeanResolver.java index 59a8019..12c3e9d 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SimpleBeanResolver.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SimpleBeanResolver.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java index f655030..193e618 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELActionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELConditionTest.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELConditionTest.java index c218baf..68877ef 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELConditionTest.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELConditionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleFactoryTest.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleFactoryTest.java index 3449397..f64cd03 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleFactoryTest.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleFactoryTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleTest.java b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleTest.java index 87d256a..0b49d99 100644 --- a/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleTest.java +++ b/easy-rules-spel/src/test/java/org/jeasy/rules/spel/SpELRuleTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/AbstractRuleFactory.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/AbstractRuleFactory.java index 7d18a58..fe4849c 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/AbstractRuleFactory.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/AbstractRuleFactory.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/RuleDefinition.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/RuleDefinition.java index a9582aa..33252c9 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/RuleDefinition.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/RuleDefinition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ActivationRuleGroup.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ActivationRuleGroup.java index 7c72830..16e5424 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ActivationRuleGroup.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ActivationRuleGroup.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/CompositeRule.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/CompositeRule.java index b6d506b..93586af 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/CompositeRule.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/CompositeRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ConditionalRuleGroup.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ConditionalRuleGroup.java index aa797ca..9479e7c 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ConditionalRuleGroup.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/ConditionalRuleGroup.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/UnitRuleGroup.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/UnitRuleGroup.java index 3c794cc..f5e48dd 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/UnitRuleGroup.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/composite/UnitRuleGroup.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/AbstractRuleDefinitionReader.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/AbstractRuleDefinitionReader.java index 820fd76..9e39cc8 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/AbstractRuleDefinitionReader.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/AbstractRuleDefinitionReader.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/JsonRuleDefinitionReader.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/JsonRuleDefinitionReader.java index f690b8c..abdf4ac 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/JsonRuleDefinitionReader.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/JsonRuleDefinitionReader.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/RuleDefinitionReader.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/RuleDefinitionReader.java index a550d57..badbbac 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/RuleDefinitionReader.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/RuleDefinitionReader.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/YamlRuleDefinitionReader.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/YamlRuleDefinitionReader.java index b5273fb..e25f6c0 100644 --- a/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/YamlRuleDefinitionReader.java +++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/reader/YamlRuleDefinitionReader.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ActivationRuleGroupTest.java b/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ActivationRuleGroupTest.java index 8a544e1..794d177 100644 --- a/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ActivationRuleGroupTest.java +++ b/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ActivationRuleGroupTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ConditionalRuleGroupTest.java b/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ConditionalRuleGroupTest.java index a87c971..b984019 100644 --- a/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ConditionalRuleGroupTest.java +++ b/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/ConditionalRuleGroupTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/UnitRuleGroupTest.java b/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/UnitRuleGroupTest.java index c94d181..aa4b328 100644 --- a/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/UnitRuleGroupTest.java +++ b/easy-rules-support/src/test/java/org/jeasy/rules/support/composite/UnitRuleGroupTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-support/src/test/java/org/jeasy/rules/support/reader/RuleDefinitionReaderTest.java b/easy-rules-support/src/test/java/org/jeasy/rules/support/reader/RuleDefinitionReaderTest.java index 84dbd77..a827a19 100644 --- a/easy-rules-support/src/test/java/org/jeasy/rules/support/reader/RuleDefinitionReaderTest.java +++ b/easy-rules-support/src/test/java/org/jeasy/rules/support/reader/RuleDefinitionReaderTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/DecreaseTemperatureAction.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/DecreaseTemperatureAction.java index 6982c3e..2be64b2 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/DecreaseTemperatureAction.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/DecreaseTemperatureAction.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/HighTemperatureCondition.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/HighTemperatureCondition.java index 5162d82..ca35c9a 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/HighTemperatureCondition.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/HighTemperatureCondition.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/Launcher.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/Launcher.java index a892c6a..2cb15d8 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/Launcher.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/airco/Launcher.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/BuzzRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/BuzzRule.java index 34f2abc..2938f26 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/BuzzRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/BuzzRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzz.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzz.java index 31c1d2d..3b5f41a 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzz.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzz.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzRule.java index 89c981f..e6a7ffc 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzWithEasyRules.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzWithEasyRules.java index eb9f758..24bd4c5 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzWithEasyRules.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzBuzzWithEasyRules.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzRule.java index 3644c2d..7125cbe 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/FizzRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/NonFizzBuzzRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/NonFizzBuzzRule.java index bf9d2d3..a7cd7bd 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/NonFizzBuzzRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/fizzbuzz/NonFizzBuzzRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/HelloWorldRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/HelloWorldRule.java index 2a877ea..7e2e755 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/HelloWorldRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/HelloWorldRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/Launcher.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/Launcher.java index f1dce7d..af236d4 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/Launcher.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/helloworld/Launcher.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Launcher.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Launcher.java index 1f1d95d..0fda690 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Launcher.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Launcher.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Person.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Person.java index 8a7324f..609ec19 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Person.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/shop/Person.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/Launcher.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/Launcher.java index 71df4bf..fa24658 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/Launcher.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/Launcher.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/WeatherRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/WeatherRule.java index a2931bd..c8163db 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/WeatherRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/weather/WeatherRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/IndexServlet.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/IndexServlet.java index 6bcf2c5..f7bb73d 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/IndexServlet.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/IndexServlet.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestFilter.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestFilter.java index 4b9ec5b..af079eb 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestFilter.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestFilter.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * 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/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestRule.java b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestRule.java index f365d7a..97d2010 100644 --- a/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestRule.java +++ b/easy-rules-tutorials/src/main/java/org/jeasy/rules/tutorials/web/SuspiciousRequestRule.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright (c) 2020, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) + * Copyright (c) 2021, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal