From 74908ee23889f92c1d5fae440c6d552863d3ca24 Mon Sep 17 00:00:00 2001 From: Younes El Ouarti <66875891+yelouarti@users.noreply.github.com> Date: Mon, 23 Dec 2024 12:59:52 +0100 Subject: [PATCH] Fix license headers (#46) --- .../hateoflux/http/HalListResponse.java | 15 +++++++++++++++ .../hateoflux/http/HalMultiResourceResponse.java | 15 +++++++++++++++ .../hateoflux/http/HalResourceResponse.java | 15 +++++++++++++++ .../hateoflux/http/HttpHeadersModule.java | 15 +++++++++++++++ .../hateoflux/http/ReactiveResponseEntity.java | 15 +++++++++++++++ .../http/ReactiveResponseEntityConfig.java | 15 +++++++++++++++ ...eactiveResponseEntityHandlerResultHandler.java | 15 +++++++++++++++ .../hateoflux/linkbuilder/BaseUrlExtractor.java | 2 +- .../hateoflux/utility/SortCriteria.java | 2 +- .../hateoflux/utility/SortDirection.java | 2 +- .../hateoflux/utility/pair/MultiRightPair.java | 12 +----------- .../utility/pair/MultiRightPairFlux.java | 9 +-------- .../utility/pair/MultiRightPairList.java | 12 +----------- .../utility/pair/MultiRightPairListCollector.java | 4 +--- .../hateoflux/utility/pair/PairFlux.java | 10 +--------- .../hateoflux/utility/pair/PairListCollector.java | 2 +- .../EmbeddingHalWrapperAssemblerTest.java | 15 +++++++++++++++ .../assembler/FlatHalWrapperAssemblerTest.java | 15 +++++++++++++++ .../hateoflux/dummy/TestDataGenerator.java | 11 +---------- .../controller/DummyControllerWithMemberVar.java | 2 +- .../dummy/model/BookWithItemRelationValue.java | 2 +- .../hateoflux/dummy/service/DummyService.java | 2 +- .../hateoflux/http/HalListResponseTest.java | 15 +++++++++++++++ .../http/HalMultiResourceResponseTest.java | 15 +++++++++++++++ .../hateoflux/http/HalResourceResponseTest.java | 15 +++++++++++++++ .../hateoflux/http/HttpHeadersModuleTest.java | 15 +++++++++++++++ ...sponseHandlerResultHandlerIntegrationTest.java | 15 +++++++++++++++ .../IntegrationTestConfiguration.java | 15 +++++++++++++++ .../linkbuilder/BaseUrlExtractorTest.java | 15 +++++++++++++++ .../SpringControllerLinkBuilderTest.java | 15 +++++++++++++++ .../hateoflux/linkbuilder/UriExpanderTest.java | 15 +++++++++++++++ .../linkbuilder/UriTemplateDataTest.java | 15 +++++++++++++++ .../kamillionlabs/hateoflux/model/LinkTest.java | 15 +++++++++++++++ .../model/hal/HalEmbeddedWrapperTest.java | 15 +++++++++++++++ .../hateoflux/model/hal/HalPageInfoTest.java | 15 +++++++++++++++ .../model/hal/HalResourceWrapperTest.java | 15 +++++++++++++++ .../hateoflux/model/hal/HalWrapperTest.java | 15 +++++++++++++++ .../EmbeddingAssemblerSerializationTest.java | 9 +-------- .../FlatAssemblerSerializationTest.java | 10 +--------- .../utility/pair/MultiRightPairFluxTest.java | 15 +++++++++++++++ .../pair/MultiRightPairListCollectorTest.java | 15 +++++++++++++++ .../utility/pair/MultiRightPairListTest.java | 15 +++++++++++++++ .../utility/pair/MultiRightPairTest.java | 15 +++++++++++++++ .../hateoflux/utility/pair/PairFluxTest.java | 15 +++++++++++++++ .../utility/pair/PairListCollectorTest.java | 15 +++++++++++++++ .../hateoflux/utility/pair/PairListTest.java | 15 +++++++++++++++ .../hateoflux/utility/pair/PairTest.java | 15 +++++++++++++++ 47 files changed, 495 insertions(+), 76 deletions(-) diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/HalListResponse.java b/src/main/java/de/kamillionlabs/hateoflux/http/HalListResponse.java index 8a723bb..8b17c75 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/HalListResponse.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/HalListResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import de.kamillionlabs.hateoflux.model.hal.HalListWrapper; diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponse.java b/src/main/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponse.java index 0536bbe..44788b7 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponse.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import de.kamillionlabs.hateoflux.model.hal.HalListWrapper; diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/HalResourceResponse.java b/src/main/java/de/kamillionlabs/hateoflux/http/HalResourceResponse.java index 874d253..44a5c9b 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/HalResourceResponse.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/HalResourceResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import de.kamillionlabs.hateoflux.model.hal.HalListWrapper; diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/HttpHeadersModule.java b/src/main/java/de/kamillionlabs/hateoflux/http/HttpHeadersModule.java index 3eb21d5..ae6bc44 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/HttpHeadersModule.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/HttpHeadersModule.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import org.springframework.http.HttpHeaders; diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntity.java b/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntity.java index da13e9e..a304a23 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntity.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import org.springframework.http.HttpStatus; diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityConfig.java b/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityConfig.java index 8d388a1..088eb8c 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityConfig.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import org.springframework.boot.autoconfigure.AutoConfiguration; diff --git a/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityHandlerResultHandler.java b/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityHandlerResultHandler.java index 98b47cb..6e7646d 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityHandlerResultHandler.java +++ b/src/main/java/de/kamillionlabs/hateoflux/http/ReactiveResponseEntityHandlerResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import org.reactivestreams.Publisher; diff --git a/src/main/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractor.java b/src/main/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractor.java index b1c9cf1..1b28820 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractor.java +++ b/src/main/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/SortCriteria.java b/src/main/java/de/kamillionlabs/hateoflux/utility/SortCriteria.java index e89427f..8e8a57a 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/SortCriteria.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/SortCriteria.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/SortDirection.java b/src/main/java/de/kamillionlabs/hateoflux/utility/SortDirection.java index b8c213d..b7ac224 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/SortDirection.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/SortDirection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPair.java b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPair.java index 2ded5dd..8c194a2 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPair.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPair.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,17 +12,7 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * - * @since 12.11.2024 - */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 */ - package de.kamillionlabs.hateoflux.utility.pair; import java.util.List; diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFlux.java b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFlux.java index 9f1ff0f..25b5295 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFlux.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFlux.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,13 +15,6 @@ * * @since 16.11.2024 */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 - */ package de.kamillionlabs.hateoflux.utility.pair; diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairList.java b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairList.java index 5403b96..a365e99 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairList.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairList.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,17 +12,7 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * - * @since 12.11.2024 - */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 */ - package de.kamillionlabs.hateoflux.utility.pair; import lombok.EqualsAndHashCode; diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollector.java b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollector.java index e6f3474..6882d4a 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollector.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,8 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * - * @since 12.11.2024 */ package de.kamillionlabs.hateoflux.utility.pair; diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairFlux.java b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairFlux.java index d8f54a8..fdf1c3c 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairFlux.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairFlux.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,14 +15,6 @@ * * @since 15.11.2024 */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 - */ - package de.kamillionlabs.hateoflux.utility.pair; import lombok.Getter; diff --git a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollector.java b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollector.java index 0ba6fa8..c240997 100644 --- a/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollector.java +++ b/src/main/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/kamillionlabs/hateoflux/assembler/EmbeddingHalWrapperAssemblerTest.java b/src/test/java/de/kamillionlabs/hateoflux/assembler/EmbeddingHalWrapperAssemblerTest.java index 848374b..c52c383 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/assembler/EmbeddingHalWrapperAssemblerTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/assembler/EmbeddingHalWrapperAssemblerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.assembler; import de.kamillionlabs.hateoflux.dummy.TestDataGenerator; diff --git a/src/test/java/de/kamillionlabs/hateoflux/assembler/FlatHalWrapperAssemblerTest.java b/src/test/java/de/kamillionlabs/hateoflux/assembler/FlatHalWrapperAssemblerTest.java index de0172e..94b5522 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/assembler/FlatHalWrapperAssemblerTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/assembler/FlatHalWrapperAssemblerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.assembler; import de.kamillionlabs.hateoflux.dummy.model.Book; diff --git a/src/test/java/de/kamillionlabs/hateoflux/dummy/TestDataGenerator.java b/src/test/java/de/kamillionlabs/hateoflux/dummy/TestDataGenerator.java index 60b9546..1c7c54e 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/dummy/TestDataGenerator.java +++ b/src/test/java/de/kamillionlabs/hateoflux/dummy/TestDataGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,15 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * - * @since 12.11.2024 - */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 */ package de.kamillionlabs.hateoflux.dummy; diff --git a/src/test/java/de/kamillionlabs/hateoflux/dummy/controller/DummyControllerWithMemberVar.java b/src/test/java/de/kamillionlabs/hateoflux/dummy/controller/DummyControllerWithMemberVar.java index 9dd10f2..481984b 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/dummy/controller/DummyControllerWithMemberVar.java +++ b/src/test/java/de/kamillionlabs/hateoflux/dummy/controller/DummyControllerWithMemberVar.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/kamillionlabs/hateoflux/dummy/model/BookWithItemRelationValue.java b/src/test/java/de/kamillionlabs/hateoflux/dummy/model/BookWithItemRelationValue.java index 842547c..3483c02 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/dummy/model/BookWithItemRelationValue.java +++ b/src/test/java/de/kamillionlabs/hateoflux/dummy/model/BookWithItemRelationValue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/kamillionlabs/hateoflux/dummy/service/DummyService.java b/src/test/java/de/kamillionlabs/hateoflux/dummy/service/DummyService.java index c036aaa..5ec510d 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/dummy/service/DummyService.java +++ b/src/test/java/de/kamillionlabs/hateoflux/dummy/service/DummyService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/kamillionlabs/hateoflux/http/HalListResponseTest.java b/src/test/java/de/kamillionlabs/hateoflux/http/HalListResponseTest.java index c76fe66..2c89e90 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/http/HalListResponseTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/http/HalListResponseTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import de.kamillionlabs.hateoflux.model.hal.HalListWrapper; diff --git a/src/test/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponseTest.java b/src/test/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponseTest.java index ef17cd9..8aadc79 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponseTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/http/HalMultiResourceResponseTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import de.kamillionlabs.hateoflux.model.hal.HalResourceWrapper; diff --git a/src/test/java/de/kamillionlabs/hateoflux/http/HalResourceResponseTest.java b/src/test/java/de/kamillionlabs/hateoflux/http/HalResourceResponseTest.java index 00b21ae..4986c05 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/http/HalResourceResponseTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/http/HalResourceResponseTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import de.kamillionlabs.hateoflux.model.hal.HalResourceWrapper; diff --git a/src/test/java/de/kamillionlabs/hateoflux/http/HttpHeadersModuleTest.java b/src/test/java/de/kamillionlabs/hateoflux/http/HttpHeadersModuleTest.java index 403e986..2f4884e 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/http/HttpHeadersModuleTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/http/HttpHeadersModuleTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.http; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/integrationtest/HalResponseHandlerResultHandlerIntegrationTest.java b/src/test/java/de/kamillionlabs/hateoflux/integrationtest/HalResponseHandlerResultHandlerIntegrationTest.java index d3508eb..079f580 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/integrationtest/HalResponseHandlerResultHandlerIntegrationTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/integrationtest/HalResponseHandlerResultHandlerIntegrationTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.integrationtest; import de.kamillionlabs.hateoflux.http.ReactiveResponseEntityConfig; diff --git a/src/test/java/de/kamillionlabs/hateoflux/integrationtest/IntegrationTestConfiguration.java b/src/test/java/de/kamillionlabs/hateoflux/integrationtest/IntegrationTestConfiguration.java index 5bd9cc5..5fb8641 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/integrationtest/IntegrationTestConfiguration.java +++ b/src/test/java/de/kamillionlabs/hateoflux/integrationtest/IntegrationTestConfiguration.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.integrationtest; import org.springframework.boot.SpringBootConfiguration; diff --git a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractorTest.java b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractorTest.java index 06d456f..06ac39a 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractorTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/BaseUrlExtractorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.linkbuilder; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/SpringControllerLinkBuilderTest.java b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/SpringControllerLinkBuilderTest.java index c8846da..14d6f40 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/SpringControllerLinkBuilderTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/SpringControllerLinkBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.linkbuilder; import de.kamillionlabs.hateoflux.dummy.controller.DummyController; diff --git a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriExpanderTest.java b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriExpanderTest.java index e4e4f7e..4a2773b 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriExpanderTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriExpanderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.linkbuilder; import org.assertj.core.api.Assertions; diff --git a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriTemplateDataTest.java b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriTemplateDataTest.java index 5a16512..d94e0f0 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriTemplateDataTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/linkbuilder/UriTemplateDataTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.linkbuilder; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/LinkTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/LinkTest.java index 7ac9121..515d373 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/LinkTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/LinkTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.model; import de.kamillionlabs.hateoflux.model.hal.HalPageInfo; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalEmbeddedWrapperTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalEmbeddedWrapperTest.java index 55b22a3..3b918d2 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalEmbeddedWrapperTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalEmbeddedWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.model.hal; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalPageInfoTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalPageInfoTest.java index 2846c8a..4d5572f 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalPageInfoTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalPageInfoTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.model.hal; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalResourceWrapperTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalResourceWrapperTest.java index 176ee43..4631a0c 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalResourceWrapperTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalResourceWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.model.hal; import de.kamillionlabs.hateoflux.dummy.model.Author; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalWrapperTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalWrapperTest.java index f442864..036b9fd 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalWrapperTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/hal/HalWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.model.hal; import de.kamillionlabs.hateoflux.dummy.model.Book; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/EmbeddingAssemblerSerializationTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/EmbeddingAssemblerSerializationTest.java index 684e159..1ac6977 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/EmbeddingAssemblerSerializationTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/EmbeddingAssemblerSerializationTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,13 +15,6 @@ * * @since 14.11.2024 */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 - */ package de.kamillionlabs.hateoflux.model.hal.serialization; diff --git a/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/FlatAssemblerSerializationTest.java b/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/FlatAssemblerSerializationTest.java index fb20899..11537f1 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/FlatAssemblerSerializationTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/model/hal/serialization/FlatAssemblerSerializationTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 kamillion-suite contributors + * Copyright (c) 2024 kamillion labs contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,14 +15,6 @@ * * @since 16.11.2024 */ -/* - * Copyright (c) 2024 kamillion contributors - * - * This work is licensed under the GNU General Public License (GPL). - * - * @since 14.10.2024 - */ - package de.kamillionlabs.hateoflux.model.hal.serialization; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFluxTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFluxTest.java index e56a77a..a18af3d 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFluxTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairFluxTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollectorTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollectorTest.java index 690e33a..5ae6bf8 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollectorTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListCollectorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import de.kamillionlabs.hateoflux.dummy.TestDataGenerator; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListTest.java index e543daa..8818eae 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairListTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairTest.java index dc3cf9d..ef47ce8 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/MultiRightPairTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairFluxTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairFluxTest.java index aa972a4..aefdf86 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairFluxTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairFluxTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollectorTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollectorTest.java index 761ecc5..f3b855e 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollectorTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListCollectorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import de.kamillionlabs.hateoflux.dummy.TestDataGenerator; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListTest.java index 3282bdf..e4dcda1 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairListTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import org.junit.jupiter.api.Test; diff --git a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairTest.java b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairTest.java index 4fa22c7..e321a35 100644 --- a/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairTest.java +++ b/src/test/java/de/kamillionlabs/hateoflux/utility/pair/PairTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024 kamillion labs contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package de.kamillionlabs.hateoflux.utility.pair; import org.junit.jupiter.api.Test;