From 07dfd5e5073602d5655a01ae1ca215bb62964e44 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 2 Jan 2019 14:07:51 +0100 Subject: [PATCH] DATALDAP-100 - Update copyright years to 2019. --- src/main/asciidoc/index.adoc | 2 +- .../springframework/data/ldap/config/LdapNamespaceHandler.java | 2 +- .../data/ldap/core/mapping/BasicLdapPersistentEntity.java | 2 +- .../data/ldap/core/mapping/LdapMappingContext.java | 2 +- .../data/ldap/core/mapping/LdapPersistentEntity.java | 2 +- .../data/ldap/core/mapping/LdapPersistentProperty.java | 2 +- .../springframework/data/ldap/core/mapping/LdapSimpleTypes.java | 2 +- .../springframework/data/ldap/repository/LdapRepository.java | 2 +- .../java/org/springframework/data/ldap/repository/Query.java | 2 +- .../data/ldap/repository/cdi/LdapRepositoryBean.java | 2 +- .../data/ldap/repository/cdi/LdapRepositoryExtension.java | 2 +- .../data/ldap/repository/config/EnableLdapRepositories.java | 2 +- .../data/ldap/repository/config/LdapRepositoriesRegistrar.java | 2 +- .../repository/config/LdapRepositoryConfigurationExtension.java | 2 +- .../data/ldap/repository/query/AbstractLdapRepositoryQuery.java | 2 +- .../ldap/repository/query/AnnotatedLdapRepositoryQuery.java | 2 +- .../data/ldap/repository/query/LdapQueryCreator.java | 2 +- .../data/ldap/repository/query/LdapQueryMethod.java | 2 +- .../data/ldap/repository/query/PartTreeLdapRepositoryQuery.java | 2 +- .../support/DefaultLdapAnnotationProcessorConfiguration.java | 2 +- .../data/ldap/repository/support/LdapAnnotationProcessor.java | 2 +- .../data/ldap/repository/support/LdapEntityInformation.java | 2 +- .../data/ldap/repository/support/LdapRepositoryFactory.java | 2 +- .../data/ldap/repository/support/LdapRepositoryFactoryBean.java | 2 +- .../data/ldap/repository/support/LdapSerializer.java | 2 +- .../data/ldap/repository/support/QuerydslLdapQuery.java | 2 +- .../data/ldap/repository/support/QuerydslLdapRepository.java | 2 +- .../data/ldap/repository/support/SimpleLdapRepository.java | 2 +- src/main/resources/notice.txt | 2 +- .../java/org/springframework/data/ldap/config/DummyEntity.java | 2 +- .../springframework/data/ldap/config/DummyLdapRepository.java | 2 +- .../data/ldap/config/LdapNamespaceHandlerTests.java | 2 +- .../data/ldap/core/mapping/LdapMappingContextUnitTests.java | 2 +- .../data/ldap/core/mapping/LdapPersistentPropertyUnitTests.java | 2 +- .../data/ldap/repository/SimpleLdapRepositoryTests.java | 2 +- .../data/ldap/repository/cdi/CdiExtensionIntegrationTests.java | 2 +- .../data/ldap/repository/cdi/LdapTemplateProducer.java | 2 +- .../data/ldap/repository/cdi/RepositoryClient.java | 2 +- .../data/ldap/repository/cdi/SampleFragment.java | 2 +- .../data/ldap/repository/cdi/SampleFragmentImpl.java | 2 +- .../data/ldap/repository/cdi/SampleRepository.java | 2 +- .../data/ldap/repository/config/AnnotationConfigTests.java | 2 +- .../ldap/repository/config/CustomRepositoryBaseClassTests.java | 2 +- .../config/LdapRepositoryConfigurationExtensionUnitTests.java | 2 +- .../data/ldap/repository/config/SpringLdapConfiguration.java | 2 +- .../data/ldap/repository/query/BaseTestPersonRepository.java | 2 +- .../ldap/repository/query/PartTreeLdapRepositoryQueryTests.java | 2 +- .../data/ldap/repository/query/UnitTestPersonRepository.java | 2 +- .../data/ldap/repository/support/BaseUnitTestPerson.java | 2 +- .../springframework/data/ldap/repository/support/QPerson.java | 2 +- .../ldap/repository/support/QuerydslFilterGeneratorTests.java | 2 +- .../ldap/repository/support/QuerydslLdapQueryUnitTests.java | 2 +- .../data/ldap/repository/support/UnitTestPerson.java | 2 +- 53 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/main/asciidoc/index.adoc b/src/main/asciidoc/index.adoc index f386846..625c1e5 100644 --- a/src/main/asciidoc/index.adoc +++ b/src/main/asciidoc/index.adoc @@ -15,7 +15,7 @@ ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1 :spring-framework-docs: http://docs.spring.io/spring/docs/{springVersion}/spring-framework-reference/ -(C) 2008-2018 The original authors. +(C) 2008-2019 The original authors. NOTE: Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically. diff --git a/src/main/java/org/springframework/data/ldap/config/LdapNamespaceHandler.java b/src/main/java/org/springframework/data/ldap/config/LdapNamespaceHandler.java index 951d488..ea55d2a 100644 --- a/src/main/java/org/springframework/data/ldap/config/LdapNamespaceHandler.java +++ b/src/main/java/org/springframework/data/ldap/config/LdapNamespaceHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/BasicLdapPersistentEntity.java b/src/main/java/org/springframework/data/ldap/core/mapping/BasicLdapPersistentEntity.java index b1052a4..15719ea 100644 --- a/src/main/java/org/springframework/data/ldap/core/mapping/BasicLdapPersistentEntity.java +++ b/src/main/java/org/springframework/data/ldap/core/mapping/BasicLdapPersistentEntity.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/LdapMappingContext.java b/src/main/java/org/springframework/data/ldap/core/mapping/LdapMappingContext.java index 9ddce2d..7ebc488 100644 --- a/src/main/java/org/springframework/data/ldap/core/mapping/LdapMappingContext.java +++ b/src/main/java/org/springframework/data/ldap/core/mapping/LdapMappingContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/LdapPersistentEntity.java b/src/main/java/org/springframework/data/ldap/core/mapping/LdapPersistentEntity.java index 8930bbb..961a128 100644 --- a/src/main/java/org/springframework/data/ldap/core/mapping/LdapPersistentEntity.java +++ b/src/main/java/org/springframework/data/ldap/core/mapping/LdapPersistentEntity.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/LdapPersistentProperty.java b/src/main/java/org/springframework/data/ldap/core/mapping/LdapPersistentProperty.java index 058c1c1..578b8ba 100644 --- a/src/main/java/org/springframework/data/ldap/core/mapping/LdapPersistentProperty.java +++ b/src/main/java/org/springframework/data/ldap/core/mapping/LdapPersistentProperty.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/LdapSimpleTypes.java b/src/main/java/org/springframework/data/ldap/core/mapping/LdapSimpleTypes.java index cda10ea..16edd68 100644 --- a/src/main/java/org/springframework/data/ldap/core/mapping/LdapSimpleTypes.java +++ b/src/main/java/org/springframework/data/ldap/core/mapping/LdapSimpleTypes.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/LdapRepository.java b/src/main/java/org/springframework/data/ldap/repository/LdapRepository.java index 9ad0e19..85149c1 100644 --- a/src/main/java/org/springframework/data/ldap/repository/LdapRepository.java +++ b/src/main/java/org/springframework/data/ldap/repository/LdapRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/Query.java b/src/main/java/org/springframework/data/ldap/repository/Query.java index e3f94dc..d3d3d13 100644 --- a/src/main/java/org/springframework/data/ldap/repository/Query.java +++ b/src/main/java/org/springframework/data/ldap/repository/Query.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/LdapRepositoryBean.java b/src/main/java/org/springframework/data/ldap/repository/cdi/LdapRepositoryBean.java index 122470d..cd96e81 100644 --- a/src/main/java/org/springframework/data/ldap/repository/cdi/LdapRepositoryBean.java +++ b/src/main/java/org/springframework/data/ldap/repository/cdi/LdapRepositoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/LdapRepositoryExtension.java b/src/main/java/org/springframework/data/ldap/repository/cdi/LdapRepositoryExtension.java index 60f81b8..fcfe713 100644 --- a/src/main/java/org/springframework/data/ldap/repository/cdi/LdapRepositoryExtension.java +++ b/src/main/java/org/springframework/data/ldap/repository/cdi/LdapRepositoryExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/EnableLdapRepositories.java b/src/main/java/org/springframework/data/ldap/repository/config/EnableLdapRepositories.java index 9389baa..beeaa95 100644 --- a/src/main/java/org/springframework/data/ldap/repository/config/EnableLdapRepositories.java +++ b/src/main/java/org/springframework/data/ldap/repository/config/EnableLdapRepositories.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/LdapRepositoriesRegistrar.java b/src/main/java/org/springframework/data/ldap/repository/config/LdapRepositoriesRegistrar.java index f5d0585..5e06c5c 100644 --- a/src/main/java/org/springframework/data/ldap/repository/config/LdapRepositoriesRegistrar.java +++ b/src/main/java/org/springframework/data/ldap/repository/config/LdapRepositoriesRegistrar.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtension.java b/src/main/java/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtension.java index 3c9d18d..27b363c 100644 --- a/src/main/java/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtension.java +++ b/src/main/java/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/AbstractLdapRepositoryQuery.java b/src/main/java/org/springframework/data/ldap/repository/query/AbstractLdapRepositoryQuery.java index bdac855..b445175 100644 --- a/src/main/java/org/springframework/data/ldap/repository/query/AbstractLdapRepositoryQuery.java +++ b/src/main/java/org/springframework/data/ldap/repository/query/AbstractLdapRepositoryQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/AnnotatedLdapRepositoryQuery.java b/src/main/java/org/springframework/data/ldap/repository/query/AnnotatedLdapRepositoryQuery.java index 1fff87e..f2483d4 100644 --- a/src/main/java/org/springframework/data/ldap/repository/query/AnnotatedLdapRepositoryQuery.java +++ b/src/main/java/org/springframework/data/ldap/repository/query/AnnotatedLdapRepositoryQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/LdapQueryCreator.java b/src/main/java/org/springframework/data/ldap/repository/query/LdapQueryCreator.java index a140b01..a3e4dac 100644 --- a/src/main/java/org/springframework/data/ldap/repository/query/LdapQueryCreator.java +++ b/src/main/java/org/springframework/data/ldap/repository/query/LdapQueryCreator.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/LdapQueryMethod.java b/src/main/java/org/springframework/data/ldap/repository/query/LdapQueryMethod.java index f9ad752..d5b5c14 100644 --- a/src/main/java/org/springframework/data/ldap/repository/query/LdapQueryMethod.java +++ b/src/main/java/org/springframework/data/ldap/repository/query/LdapQueryMethod.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQuery.java b/src/main/java/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQuery.java index 49462c6..e2a1514 100644 --- a/src/main/java/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQuery.java +++ b/src/main/java/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/DefaultLdapAnnotationProcessorConfiguration.java b/src/main/java/org/springframework/data/ldap/repository/support/DefaultLdapAnnotationProcessorConfiguration.java index b1ed4fe..ffd3763 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/DefaultLdapAnnotationProcessorConfiguration.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/DefaultLdapAnnotationProcessorConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/LdapAnnotationProcessor.java b/src/main/java/org/springframework/data/ldap/repository/support/LdapAnnotationProcessor.java index 266aaba..0e50277 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/LdapAnnotationProcessor.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/LdapAnnotationProcessor.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/LdapEntityInformation.java b/src/main/java/org/springframework/data/ldap/repository/support/LdapEntityInformation.java index c77070b..9a286da 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/LdapEntityInformation.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/LdapEntityInformation.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/LdapRepositoryFactory.java b/src/main/java/org/springframework/data/ldap/repository/support/LdapRepositoryFactory.java index fb34926..d04014d 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/LdapRepositoryFactory.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/LdapRepositoryFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/LdapRepositoryFactoryBean.java b/src/main/java/org/springframework/data/ldap/repository/support/LdapRepositoryFactoryBean.java index cd7d986..4684f8d 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/LdapRepositoryFactoryBean.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/LdapRepositoryFactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/LdapSerializer.java b/src/main/java/org/springframework/data/ldap/repository/support/LdapSerializer.java index bd7c5d6..133b8c6 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/LdapSerializer.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/LdapSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/QuerydslLdapQuery.java b/src/main/java/org/springframework/data/ldap/repository/support/QuerydslLdapQuery.java index e4689fb..e8449b2 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/QuerydslLdapQuery.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/QuerydslLdapQuery.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/QuerydslLdapRepository.java b/src/main/java/org/springframework/data/ldap/repository/support/QuerydslLdapRepository.java index 63a070c..d531436 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/QuerydslLdapRepository.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/QuerydslLdapRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/SimpleLdapRepository.java b/src/main/java/org/springframework/data/ldap/repository/support/SimpleLdapRepository.java index e74c3fb..f30023c 100644 --- a/src/main/java/org/springframework/data/ldap/repository/support/SimpleLdapRepository.java +++ b/src/main/java/org/springframework/data/ldap/repository/support/SimpleLdapRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/resources/notice.txt b/src/main/resources/notice.txt index 94598b2..1237532 100644 --- a/src/main/resources/notice.txt +++ b/src/main/resources/notice.txt @@ -1,5 +1,5 @@ Spring Data LDAP 2.1.3 -Copyright (c) [2010-2015] Pivotal Software, Inc. +Copyright (c) [2010-2019] Pivotal Software, Inc. This product is licensed to you under the Apache License, Version 2.0 (the "License"). You may not use this product except in compliance with the License. diff --git a/src/test/java/org/springframework/data/ldap/config/DummyEntity.java b/src/test/java/org/springframework/data/ldap/config/DummyEntity.java index 69b9896..d102c7b 100644 --- a/src/test/java/org/springframework/data/ldap/config/DummyEntity.java +++ b/src/test/java/org/springframework/data/ldap/config/DummyEntity.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/config/DummyLdapRepository.java b/src/test/java/org/springframework/data/ldap/config/DummyLdapRepository.java index 4503209..2ec28a5 100644 --- a/src/test/java/org/springframework/data/ldap/config/DummyLdapRepository.java +++ b/src/test/java/org/springframework/data/ldap/config/DummyLdapRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/config/LdapNamespaceHandlerTests.java b/src/test/java/org/springframework/data/ldap/config/LdapNamespaceHandlerTests.java index 5d3b0d9..04dc1c0 100644 --- a/src/test/java/org/springframework/data/ldap/config/LdapNamespaceHandlerTests.java +++ b/src/test/java/org/springframework/data/ldap/config/LdapNamespaceHandlerTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/LdapMappingContextUnitTests.java b/src/test/java/org/springframework/data/ldap/core/mapping/LdapMappingContextUnitTests.java index f734d2c..9533f08 100644 --- a/src/test/java/org/springframework/data/ldap/core/mapping/LdapMappingContextUnitTests.java +++ b/src/test/java/org/springframework/data/ldap/core/mapping/LdapMappingContextUnitTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/core/mapping/LdapPersistentPropertyUnitTests.java b/src/test/java/org/springframework/data/ldap/core/mapping/LdapPersistentPropertyUnitTests.java index add5bbf..49ca5cd 100644 --- a/src/test/java/org/springframework/data/ldap/core/mapping/LdapPersistentPropertyUnitTests.java +++ b/src/test/java/org/springframework/data/ldap/core/mapping/LdapPersistentPropertyUnitTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/SimpleLdapRepositoryTests.java b/src/test/java/org/springframework/data/ldap/repository/SimpleLdapRepositoryTests.java index d5db648..138c51a 100644 --- a/src/test/java/org/springframework/data/ldap/repository/SimpleLdapRepositoryTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/SimpleLdapRepositoryTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/CdiExtensionIntegrationTests.java b/src/test/java/org/springframework/data/ldap/repository/cdi/CdiExtensionIntegrationTests.java index ecf91f9..44c5c72 100644 --- a/src/test/java/org/springframework/data/ldap/repository/cdi/CdiExtensionIntegrationTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/cdi/CdiExtensionIntegrationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/LdapTemplateProducer.java b/src/test/java/org/springframework/data/ldap/repository/cdi/LdapTemplateProducer.java index 31b671c..87ee42b 100644 --- a/src/test/java/org/springframework/data/ldap/repository/cdi/LdapTemplateProducer.java +++ b/src/test/java/org/springframework/data/ldap/repository/cdi/LdapTemplateProducer.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/RepositoryClient.java b/src/test/java/org/springframework/data/ldap/repository/cdi/RepositoryClient.java index 0860781..ff712ba 100644 --- a/src/test/java/org/springframework/data/ldap/repository/cdi/RepositoryClient.java +++ b/src/test/java/org/springframework/data/ldap/repository/cdi/RepositoryClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/SampleFragment.java b/src/test/java/org/springframework/data/ldap/repository/cdi/SampleFragment.java index 2dbce86..88bc35d 100644 --- a/src/test/java/org/springframework/data/ldap/repository/cdi/SampleFragment.java +++ b/src/test/java/org/springframework/data/ldap/repository/cdi/SampleFragment.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/SampleFragmentImpl.java b/src/test/java/org/springframework/data/ldap/repository/cdi/SampleFragmentImpl.java index ff6bbfb..2e598fd 100644 --- a/src/test/java/org/springframework/data/ldap/repository/cdi/SampleFragmentImpl.java +++ b/src/test/java/org/springframework/data/ldap/repository/cdi/SampleFragmentImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/cdi/SampleRepository.java b/src/test/java/org/springframework/data/ldap/repository/cdi/SampleRepository.java index bd498e8..ec3ff7e 100644 --- a/src/test/java/org/springframework/data/ldap/repository/cdi/SampleRepository.java +++ b/src/test/java/org/springframework/data/ldap/repository/cdi/SampleRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2017-2018 the original author or authors. + * Copyright 2017-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/AnnotationConfigTests.java b/src/test/java/org/springframework/data/ldap/repository/config/AnnotationConfigTests.java index 7ce05a4..5a9b194 100644 --- a/src/test/java/org/springframework/data/ldap/repository/config/AnnotationConfigTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/config/AnnotationConfigTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/CustomRepositoryBaseClassTests.java b/src/test/java/org/springframework/data/ldap/repository/config/CustomRepositoryBaseClassTests.java index 3811b3a..257ce7e 100644 --- a/src/test/java/org/springframework/data/ldap/repository/config/CustomRepositoryBaseClassTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/config/CustomRepositoryBaseClassTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtensionUnitTests.java b/src/test/java/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtensionUnitTests.java index 16280bf..ba75178 100644 --- a/src/test/java/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtensionUnitTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/config/LdapRepositoryConfigurationExtensionUnitTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/config/SpringLdapConfiguration.java b/src/test/java/org/springframework/data/ldap/repository/config/SpringLdapConfiguration.java index 03977ed..920a559 100644 --- a/src/test/java/org/springframework/data/ldap/repository/config/SpringLdapConfiguration.java +++ b/src/test/java/org/springframework/data/ldap/repository/config/SpringLdapConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/BaseTestPersonRepository.java b/src/test/java/org/springframework/data/ldap/repository/query/BaseTestPersonRepository.java index 84931f6..84cce4e 100644 --- a/src/test/java/org/springframework/data/ldap/repository/query/BaseTestPersonRepository.java +++ b/src/test/java/org/springframework/data/ldap/repository/query/BaseTestPersonRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQueryTests.java b/src/test/java/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQueryTests.java index 0cd13f0..661bd3d 100644 --- a/src/test/java/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQueryTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/query/PartTreeLdapRepositoryQueryTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/query/UnitTestPersonRepository.java b/src/test/java/org/springframework/data/ldap/repository/query/UnitTestPersonRepository.java index 0f44aba..49f6f00 100644 --- a/src/test/java/org/springframework/data/ldap/repository/query/UnitTestPersonRepository.java +++ b/src/test/java/org/springframework/data/ldap/repository/query/UnitTestPersonRepository.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/BaseUnitTestPerson.java b/src/test/java/org/springframework/data/ldap/repository/support/BaseUnitTestPerson.java index 45ddf07..c5bc9c2 100644 --- a/src/test/java/org/springframework/data/ldap/repository/support/BaseUnitTestPerson.java +++ b/src/test/java/org/springframework/data/ldap/repository/support/BaseUnitTestPerson.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/QPerson.java b/src/test/java/org/springframework/data/ldap/repository/support/QPerson.java index c102879..7133abe 100644 --- a/src/test/java/org/springframework/data/ldap/repository/support/QPerson.java +++ b/src/test/java/org/springframework/data/ldap/repository/support/QPerson.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/QuerydslFilterGeneratorTests.java b/src/test/java/org/springframework/data/ldap/repository/support/QuerydslFilterGeneratorTests.java index 7849ae7..a1a219f 100644 --- a/src/test/java/org/springframework/data/ldap/repository/support/QuerydslFilterGeneratorTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/support/QuerydslFilterGeneratorTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/QuerydslLdapQueryUnitTests.java b/src/test/java/org/springframework/data/ldap/repository/support/QuerydslLdapQueryUnitTests.java index 6d7072a..2923cbc 100644 --- a/src/test/java/org/springframework/data/ldap/repository/support/QuerydslLdapQueryUnitTests.java +++ b/src/test/java/org/springframework/data/ldap/repository/support/QuerydslLdapQueryUnitTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2018 the original author or authors. + * Copyright 2018-2019 the original author or authors. * * 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/org/springframework/data/ldap/repository/support/UnitTestPerson.java b/src/test/java/org/springframework/data/ldap/repository/support/UnitTestPerson.java index e13d676..8126dcd 100644 --- a/src/test/java/org/springframework/data/ldap/repository/support/UnitTestPerson.java +++ b/src/test/java/org/springframework/data/ldap/repository/support/UnitTestPerson.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2018 the original author or authors. + * Copyright 2016-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.