From 95e06d62af6b6221ee4e91e44cede048902268e1 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Fri, 22 Mar 2019 10:17:38 -0700 Subject: [PATCH] #35 - URL Cleanup. This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://www.apache.org/licenses/LICENSE-2.0 with 50 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- .../data/aerospike/cache/AerospikeCacheManager.java | 2 +- .../aerospike/config/AerospikeClientBeanDefinitionParser.java | 2 +- .../data/aerospike/config/AerospikeNamespaceHandler.java | 2 +- .../data/aerospike/config/BatchPolicyBeanDefinitionParser.java | 2 +- .../data/aerospike/config/BatchPolicyFactoryBean.java | 2 +- .../data/aerospike/config/ClientPolicyBeanDefinitionParser.java | 2 +- .../data/aerospike/config/ClientPolicyFactoryBean.java | 2 +- .../data/aerospike/config/QueryPolicyBeanDefinitionParser.java | 2 +- .../data/aerospike/config/QueryPolicyFactoryBean.java | 2 +- .../data/aerospike/config/ReadPolicyBeanDefinitionParser.java | 2 +- .../data/aerospike/config/ReadPolicyFactoryBean.java | 2 +- .../data/aerospike/config/ScanPolicyBeanDefinitionParser.java | 2 +- .../data/aerospike/config/ScanPolicyFactoryBean.java | 2 +- .../data/aerospike/config/WritePolicyBeanDefinitionParser.java | 2 +- .../data/aerospike/config/WritePolicyFactoryBean.java | 2 +- .../data/aerospike/convert/AerospikeConverter.java | 2 +- .../data/aerospike/convert/AerospikeConverters.java | 2 +- .../data/aerospike/convert/ConverterRegistration.java | 2 +- .../data/aerospike/convert/CustomConversions.java | 2 +- .../springframework/data/aerospike/convert/DateConverters.java | 2 +- .../data/aerospike/convert/MappingAerospikeConverter.java | 2 +- .../data/aerospike/core/AerospikeClientCallback.java | 2 +- .../data/aerospike/core/AerospikeExceptionTranslator.java | 2 +- .../data/aerospike/core/AerospikeKeyValueAdapter.java | 2 +- .../data/aerospike/core/AerospikeOperations.java | 2 +- .../springframework/data/aerospike/core/AerospikeTemplate.java | 2 +- .../aerospike/core/DefaultAerospikeExceptionTranslator.java | 2 +- .../data/aerospike/mapping/AerospikeMappingContext.java | 2 +- .../data/aerospike/mapping/AerospikePersistentEntity.java | 2 +- .../data/aerospike/mapping/AerospikePersistentProperty.java | 2 +- .../data/aerospike/mapping/AerospikeSimpleTypes.java | 2 +- .../data/aerospike/mapping/BasicAerospikePersistentEntity.java | 2 +- .../aerospike/mapping/BasicAerospikePersistentProperty.java | 2 +- .../aerospike/mapping/CachingAerospikePersistentProperty.java | 2 +- .../org/springframework/data/aerospike/mapping/Document.java | 2 +- .../data/aerospike/repository/AerospikeRepository.java | 2 +- .../repository/config/AerospikeRepositoriesRegistrar.java | 2 +- .../repository/config/EnableAerospikeRepositories.java | 2 +- .../data/aerospike/cache/AerospikeCacheMangerTests.java | 2 +- .../data/aerospike/core/AerospikeTemplateIntegrationTests.java | 2 +- .../repository/CustomerRepositoriesIntegrationTests.java | 2 +- .../aerospike/repository/PersonRepositoryIntegrationTests.java | 2 +- .../java/org/springframework/data/aerospike/sample/Address.java | 2 +- .../java/org/springframework/data/aerospike/sample/Contact.java | 2 +- .../data/aerospike/sample/ContactRepository.java | 2 +- .../org/springframework/data/aerospike/sample/Credentials.java | 2 +- .../org/springframework/data/aerospike/sample/Customer.java | 2 +- .../data/aerospike/sample/CustomerRepository.java | 2 +- .../java/org/springframework/data/aerospike/sample/Person.java | 2 +- .../java/org/springframework/data/aerospike/sample/User.java | 2 +- 50 files changed, 50 insertions(+), 50 deletions(-) diff --git a/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheManager.java b/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheManager.java index c92ea7dc0..eadf5a93d 100644 --- a/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheManager.java +++ b/src/main/java/org/springframework/data/aerospike/cache/AerospikeCacheManager.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/AerospikeClientBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/AerospikeClientBeanDefinitionParser.java index 7e225ac31..c7639b4f2 100644 --- a/src/main/java/org/springframework/data/aerospike/config/AerospikeClientBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/AerospikeClientBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/AerospikeNamespaceHandler.java b/src/main/java/org/springframework/data/aerospike/config/AerospikeNamespaceHandler.java index 15b5d1cb0..5b4c43c18 100644 --- a/src/main/java/org/springframework/data/aerospike/config/AerospikeNamespaceHandler.java +++ b/src/main/java/org/springframework/data/aerospike/config/AerospikeNamespaceHandler.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/BatchPolicyBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/BatchPolicyBeanDefinitionParser.java index 358d49ab9..4a3c1d572 100644 --- a/src/main/java/org/springframework/data/aerospike/config/BatchPolicyBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/BatchPolicyBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/BatchPolicyFactoryBean.java b/src/main/java/org/springframework/data/aerospike/config/BatchPolicyFactoryBean.java index db05ef11e..f2eaadafd 100644 --- a/src/main/java/org/springframework/data/aerospike/config/BatchPolicyFactoryBean.java +++ b/src/main/java/org/springframework/data/aerospike/config/BatchPolicyFactoryBean.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/ClientPolicyBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/ClientPolicyBeanDefinitionParser.java index bb87b0888..a402f24cc 100644 --- a/src/main/java/org/springframework/data/aerospike/config/ClientPolicyBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/ClientPolicyBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/ClientPolicyFactoryBean.java b/src/main/java/org/springframework/data/aerospike/config/ClientPolicyFactoryBean.java index 1f1f6d968..b88bb8ada 100644 --- a/src/main/java/org/springframework/data/aerospike/config/ClientPolicyFactoryBean.java +++ b/src/main/java/org/springframework/data/aerospike/config/ClientPolicyFactoryBean.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/QueryPolicyBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/QueryPolicyBeanDefinitionParser.java index 0089ef775..04b900e2a 100644 --- a/src/main/java/org/springframework/data/aerospike/config/QueryPolicyBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/QueryPolicyBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/QueryPolicyFactoryBean.java b/src/main/java/org/springframework/data/aerospike/config/QueryPolicyFactoryBean.java index e462a75a4..4d42f0dc4 100644 --- a/src/main/java/org/springframework/data/aerospike/config/QueryPolicyFactoryBean.java +++ b/src/main/java/org/springframework/data/aerospike/config/QueryPolicyFactoryBean.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/ReadPolicyBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/ReadPolicyBeanDefinitionParser.java index 497ac4da3..c385c7915 100644 --- a/src/main/java/org/springframework/data/aerospike/config/ReadPolicyBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/ReadPolicyBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/ReadPolicyFactoryBean.java b/src/main/java/org/springframework/data/aerospike/config/ReadPolicyFactoryBean.java index 820ba4ee1..062ffd628 100644 --- a/src/main/java/org/springframework/data/aerospike/config/ReadPolicyFactoryBean.java +++ b/src/main/java/org/springframework/data/aerospike/config/ReadPolicyFactoryBean.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/ScanPolicyBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/ScanPolicyBeanDefinitionParser.java index 9212e253b..21b02015e 100644 --- a/src/main/java/org/springframework/data/aerospike/config/ScanPolicyBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/ScanPolicyBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/ScanPolicyFactoryBean.java b/src/main/java/org/springframework/data/aerospike/config/ScanPolicyFactoryBean.java index 29c542ef2..baa949193 100644 --- a/src/main/java/org/springframework/data/aerospike/config/ScanPolicyFactoryBean.java +++ b/src/main/java/org/springframework/data/aerospike/config/ScanPolicyFactoryBean.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/WritePolicyBeanDefinitionParser.java b/src/main/java/org/springframework/data/aerospike/config/WritePolicyBeanDefinitionParser.java index ce00a1e85..e66e8db6b 100644 --- a/src/main/java/org/springframework/data/aerospike/config/WritePolicyBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/aerospike/config/WritePolicyBeanDefinitionParser.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/config/WritePolicyFactoryBean.java b/src/main/java/org/springframework/data/aerospike/config/WritePolicyFactoryBean.java index 222a7e1a1..80b84ac4a 100644 --- a/src/main/java/org/springframework/data/aerospike/config/WritePolicyFactoryBean.java +++ b/src/main/java/org/springframework/data/aerospike/config/WritePolicyFactoryBean.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverter.java b/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverter.java index f62c20f16..dcdddd59e 100644 --- a/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverter.java +++ b/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverter.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverters.java b/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverters.java index 0db4b5b29..5ba89b977 100644 --- a/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverters.java +++ b/src/main/java/org/springframework/data/aerospike/convert/AerospikeConverters.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/convert/ConverterRegistration.java b/src/main/java/org/springframework/data/aerospike/convert/ConverterRegistration.java index 7c6db5631..2c6615ec8 100644 --- a/src/main/java/org/springframework/data/aerospike/convert/ConverterRegistration.java +++ b/src/main/java/org/springframework/data/aerospike/convert/ConverterRegistration.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/convert/CustomConversions.java b/src/main/java/org/springframework/data/aerospike/convert/CustomConversions.java index 48e465023..180612424 100644 --- a/src/main/java/org/springframework/data/aerospike/convert/CustomConversions.java +++ b/src/main/java/org/springframework/data/aerospike/convert/CustomConversions.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/convert/DateConverters.java b/src/main/java/org/springframework/data/aerospike/convert/DateConverters.java index a0dd5633f..10f442068 100644 --- a/src/main/java/org/springframework/data/aerospike/convert/DateConverters.java +++ b/src/main/java/org/springframework/data/aerospike/convert/DateConverters.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/convert/MappingAerospikeConverter.java b/src/main/java/org/springframework/data/aerospike/convert/MappingAerospikeConverter.java index 6eaf22846..dcf58a672 100644 --- a/src/main/java/org/springframework/data/aerospike/convert/MappingAerospikeConverter.java +++ b/src/main/java/org/springframework/data/aerospike/convert/MappingAerospikeConverter.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/core/AerospikeClientCallback.java b/src/main/java/org/springframework/data/aerospike/core/AerospikeClientCallback.java index fc864c8f8..f54718a07 100644 --- a/src/main/java/org/springframework/data/aerospike/core/AerospikeClientCallback.java +++ b/src/main/java/org/springframework/data/aerospike/core/AerospikeClientCallback.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/core/AerospikeExceptionTranslator.java b/src/main/java/org/springframework/data/aerospike/core/AerospikeExceptionTranslator.java index 520120768..fbd5f74a3 100644 --- a/src/main/java/org/springframework/data/aerospike/core/AerospikeExceptionTranslator.java +++ b/src/main/java/org/springframework/data/aerospike/core/AerospikeExceptionTranslator.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/core/AerospikeKeyValueAdapter.java b/src/main/java/org/springframework/data/aerospike/core/AerospikeKeyValueAdapter.java index 7e9d608bb..3959cc3c6 100644 --- a/src/main/java/org/springframework/data/aerospike/core/AerospikeKeyValueAdapter.java +++ b/src/main/java/org/springframework/data/aerospike/core/AerospikeKeyValueAdapter.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/core/AerospikeOperations.java b/src/main/java/org/springframework/data/aerospike/core/AerospikeOperations.java index 08efdacde..1dfb3c5d9 100644 --- a/src/main/java/org/springframework/data/aerospike/core/AerospikeOperations.java +++ b/src/main/java/org/springframework/data/aerospike/core/AerospikeOperations.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/core/AerospikeTemplate.java b/src/main/java/org/springframework/data/aerospike/core/AerospikeTemplate.java index c23befab5..47f8d8b2a 100644 --- a/src/main/java/org/springframework/data/aerospike/core/AerospikeTemplate.java +++ b/src/main/java/org/springframework/data/aerospike/core/AerospikeTemplate.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/core/DefaultAerospikeExceptionTranslator.java b/src/main/java/org/springframework/data/aerospike/core/DefaultAerospikeExceptionTranslator.java index 588986457..d2c7ae135 100644 --- a/src/main/java/org/springframework/data/aerospike/core/DefaultAerospikeExceptionTranslator.java +++ b/src/main/java/org/springframework/data/aerospike/core/DefaultAerospikeExceptionTranslator.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/AerospikeMappingContext.java b/src/main/java/org/springframework/data/aerospike/mapping/AerospikeMappingContext.java index 3920fe0a3..ea18daf72 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/AerospikeMappingContext.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/AerospikeMappingContext.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentEntity.java b/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentEntity.java index f8b57e2d4..9d6ddc506 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentEntity.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentEntity.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentProperty.java b/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentProperty.java index a5240f487..93e2c9dd2 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentProperty.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/AerospikePersistentProperty.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/AerospikeSimpleTypes.java b/src/main/java/org/springframework/data/aerospike/mapping/AerospikeSimpleTypes.java index adaea243f..e9758f4b5 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/AerospikeSimpleTypes.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/AerospikeSimpleTypes.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentEntity.java b/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentEntity.java index ab99772ca..ea4e68815 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentEntity.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentEntity.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentProperty.java b/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentProperty.java index 6d82b217a..8f588beaa 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentProperty.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/BasicAerospikePersistentProperty.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/CachingAerospikePersistentProperty.java b/src/main/java/org/springframework/data/aerospike/mapping/CachingAerospikePersistentProperty.java index 555290aa2..402064ebe 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/CachingAerospikePersistentProperty.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/CachingAerospikePersistentProperty.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/mapping/Document.java b/src/main/java/org/springframework/data/aerospike/mapping/Document.java index 155625669..f32a79e14 100644 --- a/src/main/java/org/springframework/data/aerospike/mapping/Document.java +++ b/src/main/java/org/springframework/data/aerospike/mapping/Document.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/repository/AerospikeRepository.java b/src/main/java/org/springframework/data/aerospike/repository/AerospikeRepository.java index 3df57e453..6aba0b7fb 100644 --- a/src/main/java/org/springframework/data/aerospike/repository/AerospikeRepository.java +++ b/src/main/java/org/springframework/data/aerospike/repository/AerospikeRepository.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/repository/config/AerospikeRepositoriesRegistrar.java b/src/main/java/org/springframework/data/aerospike/repository/config/AerospikeRepositoriesRegistrar.java index 981fda351..1a22ab521 100644 --- a/src/main/java/org/springframework/data/aerospike/repository/config/AerospikeRepositoriesRegistrar.java +++ b/src/main/java/org/springframework/data/aerospike/repository/config/AerospikeRepositoriesRegistrar.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/main/java/org/springframework/data/aerospike/repository/config/EnableAerospikeRepositories.java b/src/main/java/org/springframework/data/aerospike/repository/config/EnableAerospikeRepositories.java index 4823da8e3..ec2f387fa 100644 --- a/src/main/java/org/springframework/data/aerospike/repository/config/EnableAerospikeRepositories.java +++ b/src/main/java/org/springframework/data/aerospike/repository/config/EnableAerospikeRepositories.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/cache/AerospikeCacheMangerTests.java b/src/test/java/org/springframework/data/aerospike/cache/AerospikeCacheMangerTests.java index 278c3547e..9241dc045 100644 --- a/src/test/java/org/springframework/data/aerospike/cache/AerospikeCacheMangerTests.java +++ b/src/test/java/org/springframework/data/aerospike/cache/AerospikeCacheMangerTests.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateIntegrationTests.java b/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateIntegrationTests.java index 78cc70f03..fe2c1002d 100644 --- a/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateIntegrationTests.java +++ b/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateIntegrationTests.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/repository/CustomerRepositoriesIntegrationTests.java b/src/test/java/org/springframework/data/aerospike/repository/CustomerRepositoriesIntegrationTests.java index d17a5b298..eede5ea36 100644 --- a/src/test/java/org/springframework/data/aerospike/repository/CustomerRepositoriesIntegrationTests.java +++ b/src/test/java/org/springframework/data/aerospike/repository/CustomerRepositoriesIntegrationTests.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/repository/PersonRepositoryIntegrationTests.java b/src/test/java/org/springframework/data/aerospike/repository/PersonRepositoryIntegrationTests.java index a7aad1dbf..7f6c78e7c 100644 --- a/src/test/java/org/springframework/data/aerospike/repository/PersonRepositoryIntegrationTests.java +++ b/src/test/java/org/springframework/data/aerospike/repository/PersonRepositoryIntegrationTests.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/Address.java b/src/test/java/org/springframework/data/aerospike/sample/Address.java index 0b1f0098c..06dbeaae5 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/Address.java +++ b/src/test/java/org/springframework/data/aerospike/sample/Address.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/Contact.java b/src/test/java/org/springframework/data/aerospike/sample/Contact.java index 2e12a768f..175b4e00b 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/Contact.java +++ b/src/test/java/org/springframework/data/aerospike/sample/Contact.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/ContactRepository.java b/src/test/java/org/springframework/data/aerospike/sample/ContactRepository.java index 03a49e100..9c4179419 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/ContactRepository.java +++ b/src/test/java/org/springframework/data/aerospike/sample/ContactRepository.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/Credentials.java b/src/test/java/org/springframework/data/aerospike/sample/Credentials.java index 8c542d2d7..4ab4b327a 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/Credentials.java +++ b/src/test/java/org/springframework/data/aerospike/sample/Credentials.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/Customer.java b/src/test/java/org/springframework/data/aerospike/sample/Customer.java index d222b6ce7..61e86c7a6 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/Customer.java +++ b/src/test/java/org/springframework/data/aerospike/sample/Customer.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/CustomerRepository.java b/src/test/java/org/springframework/data/aerospike/sample/CustomerRepository.java index 426e6efa9..e0fbe4797 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/CustomerRepository.java +++ b/src/test/java/org/springframework/data/aerospike/sample/CustomerRepository.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/Person.java b/src/test/java/org/springframework/data/aerospike/sample/Person.java index 2cae0e989..1499af625 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/Person.java +++ b/src/test/java/org/springframework/data/aerospike/sample/Person.java @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/src/test/java/org/springframework/data/aerospike/sample/User.java b/src/test/java/org/springframework/data/aerospike/sample/User.java index e7ecfe19d..658ec8849 100644 --- a/src/test/java/org/springframework/data/aerospike/sample/User.java +++ b/src/test/java/org/springframework/data/aerospike/sample/User.java @@ -5,7 +5,7 @@ * 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 + * https://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,