From 2fb9795fd725ba86a1308e2558fdf96f76f97b85 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 11:16:37 -0500 Subject: [PATCH] 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/ with 1 occurrences migrated to: https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/) result 200). * [ ] http://www.apache.org/licenses/LICENSE-2.0 with 54 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE.txt | 4 ++-- .../autoconfigure/leader/EtcdLeaderAutoConfiguration.java | 2 +- .../leader/HazelcastLeaderAutoConfiguration.java | 2 +- .../cluster/autoconfigure/leader/LeaderAutoConfiguration.java | 2 +- .../leader/ZookeeperLeaderAutoConfiguration.java | 2 +- .../autoconfigure/lock/RedisLockServiceAutoConfiguration.java | 2 +- .../cloud/cluster/autoconfigure/TestUtils.java | 2 +- .../leader/AbstractLeaderAutoConfigurationTests.java | 2 +- .../leader/EtcdLeaderAutoConfigurationTests.java | 2 +- .../leader/HazelcastLeaderAutoConfigurationTests.java | 2 +- .../autoconfigure/leader/LeaderAutoConfigurationTests.java | 2 +- .../leader/ZookeeperLeaderAutoConfigurationTests.java | 2 +- .../lock/AbstractLockAutoConfigurationTests.java | 2 +- .../lock/RedisLockServiceAutoConfigurationTests.java | 2 +- .../cloud/cluster/leader/AbstractCandidate.java | 2 +- .../org/springframework/cloud/cluster/leader/Candidate.java | 2 +- .../org/springframework/cloud/cluster/leader/Context.java | 2 +- .../cloud/cluster/leader/DefaultCandidate.java | 2 +- .../cloud/cluster/leader/LeaderElectionProperties.java | 2 +- .../cloud/cluster/leader/event/AbstractLeaderEvent.java | 2 +- .../cluster/leader/event/DefaultLeaderEventPublisher.java | 2 +- .../cloud/cluster/leader/event/LeaderEventPublisher.java | 2 +- .../leader/event/LeaderEventPublisherConfiguration.java | 2 +- .../cloud/cluster/leader/event/LoggingListener.java | 2 +- .../cloud/cluster/leader/event/OnGrantedEvent.java | 2 +- .../cloud/cluster/leader/event/OnRevokedEvent.java | 2 +- .../springframework/cloud/cluster/lock/DistributedLock.java | 2 +- .../cloud/cluster/lock/DistributedLockProperties.java | 2 +- .../org/springframework/cloud/cluster/lock/LockRegistry.java | 2 +- .../org/springframework/cloud/cluster/lock/LockService.java | 2 +- .../cloud/cluster/lock/LockServiceLocator.java | 2 +- .../springframework/cloud/cluster/lock/LockingException.java | 2 +- .../cloud/cluster/lock/support/AbstractDistributedLock.java | 2 +- .../cloud/cluster/lock/support/DefaultLockRegistry.java | 2 +- .../cloud/cluster/lock/support/DefaultLockServiceLocator.java | 2 +- .../cloud/cluster/lock/support/DelegatingDistributedLock.java | 2 +- .../java/org/springframework/cloud/cluster/TestUtils.java | 2 +- .../cloud/cluster/lock/AbstractLockingTests.java | 2 +- .../cloud/cluster/lock/support/DefaultLockRegistryTests.java | 2 +- .../cluster/lock/support/DefaultLockServiceLocatorTests.java | 2 +- .../cloud/cluster/etcd/EtcdClusterProperties.java | 2 +- .../cloud/cluster/etcd/leader/LeaderInitiator.java | 2 +- .../springframework/cloud/cluster/etcd/leader/EtcdTests.java | 2 +- .../cloud/cluster/hazelcast/HazelcastClusterProperties.java | 2 +- .../cloud/cluster/hazelcast/leader/LeaderInitiator.java | 2 +- .../cloud/cluster/hazelcast/leader/HazelcastTests.java | 2 +- .../cloud/cluster/redis/RedisClusterProperties.java | 2 +- .../cloud/cluster/redis/lock/RedisLockService.java | 2 +- .../org/springframework/cloud/cluster/redis/lock/RedisIT.java | 2 +- .../cloud/cluster/zk/ZookeeperClusterProperties.java | 2 +- .../cloud/cluster/zk/curator/CuratorFrameworkFactoryBean.java | 2 +- .../cloud/cluster/zk/leader/LeaderInitiator.java | 2 +- .../cluster/zk/curator/CuratorFrameworkFactoryBeanTests.java | 2 +- .../cloud/cluster/zk/leader/ZookeeperTests.java | 2 +- 54 files changed, 55 insertions(+), 55 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index d645695..62589ed 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,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/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfiguration.java b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfiguration.java index 04001ab..112acb2 100644 --- a/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfiguration.java +++ b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfiguration.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/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfiguration.java b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfiguration.java index aa46353..4bfa92a 100644 --- a/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfiguration.java +++ b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfiguration.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/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfiguration.java b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfiguration.java index a24c99b..d86c9a6 100644 --- a/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfiguration.java +++ b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfiguration.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/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfiguration.java b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfiguration.java index 9b7596f..82dc58f 100644 --- a/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfiguration.java +++ b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfiguration.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/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfiguration.java b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfiguration.java index c462bef..df514a1 100644 --- a/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfiguration.java +++ b/spring-cloud-cluster-autoconfigure/src/main/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfiguration.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/TestUtils.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/TestUtils.java index 5cbea59..dcb53ab 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/TestUtils.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/TestUtils.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/AbstractLeaderAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/AbstractLeaderAutoConfigurationTests.java index 4933200..1e2905b 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/AbstractLeaderAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/AbstractLeaderAutoConfigurationTests.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfigurationTests.java index 1ba0642..065c651 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/EtcdLeaderAutoConfigurationTests.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfigurationTests.java index 2586dac..b4fc1e6 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/HazelcastLeaderAutoConfigurationTests.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfigurationTests.java index f21a671..8e2cf2e 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/LeaderAutoConfigurationTests.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfigurationTests.java index 89b29b2..6dc9671 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/leader/ZookeeperLeaderAutoConfigurationTests.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/AbstractLockAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/AbstractLockAutoConfigurationTests.java index 24e49a5..eff2517 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/AbstractLockAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/AbstractLockAutoConfigurationTests.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/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfigurationTests.java b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfigurationTests.java index f1f92bf..0668cbe 100644 --- a/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfigurationTests.java +++ b/spring-cloud-cluster-autoconfigure/src/test/java/org/springframework/cloud/cluster/autoconfigure/lock/RedisLockServiceAutoConfigurationTests.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/AbstractCandidate.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/AbstractCandidate.java index 35b6e1a..4a811e0 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/AbstractCandidate.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/AbstractCandidate.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Candidate.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Candidate.java index 54e90c3..812bb20 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Candidate.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Candidate.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Context.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Context.java index 6f000a3..3891da9 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Context.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/Context.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/DefaultCandidate.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/DefaultCandidate.java index 6c12036..68cde9a 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/DefaultCandidate.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/DefaultCandidate.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/LeaderElectionProperties.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/LeaderElectionProperties.java index 53b1bb9..64c84d0 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/LeaderElectionProperties.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/LeaderElectionProperties.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/AbstractLeaderEvent.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/AbstractLeaderEvent.java index 393b918..a299af4 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/AbstractLeaderEvent.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/AbstractLeaderEvent.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/DefaultLeaderEventPublisher.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/DefaultLeaderEventPublisher.java index 40e2cec..203e356 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/DefaultLeaderEventPublisher.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/DefaultLeaderEventPublisher.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisher.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisher.java index e445137..8920a02 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisher.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisher.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisherConfiguration.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisherConfiguration.java index e25457c..b53cb30 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisherConfiguration.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LeaderEventPublisherConfiguration.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LoggingListener.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LoggingListener.java index 545c578..fdd6287 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LoggingListener.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/LoggingListener.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnGrantedEvent.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnGrantedEvent.java index ef7ed93..8d3971f 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnGrantedEvent.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnGrantedEvent.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnRevokedEvent.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnRevokedEvent.java index e3cc05d..ef83e4d 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnRevokedEvent.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/leader/event/OnRevokedEvent.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLock.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLock.java index 556725f..711a3f1 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLock.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLock.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLockProperties.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLockProperties.java index f896d3a..cda6abb 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLockProperties.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/DistributedLockProperties.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockRegistry.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockRegistry.java index 86905b1..e5ca9c5 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockRegistry.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockRegistry.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockService.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockService.java index 85d1ae4..8482f5b 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockService.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockService.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockServiceLocator.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockServiceLocator.java index 640942c..3962d1a 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockServiceLocator.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockServiceLocator.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockingException.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockingException.java index 1089eb8..5fca6b8 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockingException.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/LockingException.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/AbstractDistributedLock.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/AbstractDistributedLock.java index 0d5b75e..4676d84 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/AbstractDistributedLock.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/AbstractDistributedLock.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistry.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistry.java index 6ef0790..443ec80 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistry.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistry.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocator.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocator.java index b638576..43db629 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocator.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocator.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/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DelegatingDistributedLock.java b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DelegatingDistributedLock.java index 1f7593d..14f59ce 100644 --- a/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DelegatingDistributedLock.java +++ b/spring-cloud-cluster-core/src/main/java/org/springframework/cloud/cluster/lock/support/DelegatingDistributedLock.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/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/TestUtils.java b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/TestUtils.java index 99f8d8b..7b1e703 100644 --- a/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/TestUtils.java +++ b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/TestUtils.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/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/AbstractLockingTests.java b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/AbstractLockingTests.java index 1becb75..dc914e8 100644 --- a/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/AbstractLockingTests.java +++ b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/AbstractLockingTests.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/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistryTests.java b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistryTests.java index 2fbbca6..27dd5f9 100644 --- a/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistryTests.java +++ b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockRegistryTests.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/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocatorTests.java b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocatorTests.java index 2fd725f..c6062ae 100644 --- a/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocatorTests.java +++ b/spring-cloud-cluster-core/src/test/java/org/springframework/cloud/cluster/lock/support/DefaultLockServiceLocatorTests.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/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/EtcdClusterProperties.java b/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/EtcdClusterProperties.java index 73a06c1..ab53a73 100644 --- a/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/EtcdClusterProperties.java +++ b/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/EtcdClusterProperties.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/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/leader/LeaderInitiator.java b/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/leader/LeaderInitiator.java index 8423ddf..53d1693 100644 --- a/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/leader/LeaderInitiator.java +++ b/spring-cloud-cluster-etcd/src/main/java/org/springframework/cloud/cluster/etcd/leader/LeaderInitiator.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/spring-cloud-cluster-etcd/src/test/java/org/springframework/cloud/cluster/etcd/leader/EtcdTests.java b/spring-cloud-cluster-etcd/src/test/java/org/springframework/cloud/cluster/etcd/leader/EtcdTests.java index b83472c..6fc7077 100644 --- a/spring-cloud-cluster-etcd/src/test/java/org/springframework/cloud/cluster/etcd/leader/EtcdTests.java +++ b/spring-cloud-cluster-etcd/src/test/java/org/springframework/cloud/cluster/etcd/leader/EtcdTests.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/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/HazelcastClusterProperties.java b/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/HazelcastClusterProperties.java index b4488bc..64d7db0 100644 --- a/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/HazelcastClusterProperties.java +++ b/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/HazelcastClusterProperties.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/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/leader/LeaderInitiator.java b/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/leader/LeaderInitiator.java index 451391b..2bf9838 100644 --- a/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/leader/LeaderInitiator.java +++ b/spring-cloud-cluster-hazelcast/src/main/java/org/springframework/cloud/cluster/hazelcast/leader/LeaderInitiator.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/spring-cloud-cluster-hazelcast/src/test/java/org/springframework/cloud/cluster/hazelcast/leader/HazelcastTests.java b/spring-cloud-cluster-hazelcast/src/test/java/org/springframework/cloud/cluster/hazelcast/leader/HazelcastTests.java index 07bdd77..452cb6e 100644 --- a/spring-cloud-cluster-hazelcast/src/test/java/org/springframework/cloud/cluster/hazelcast/leader/HazelcastTests.java +++ b/spring-cloud-cluster-hazelcast/src/test/java/org/springframework/cloud/cluster/hazelcast/leader/HazelcastTests.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/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/RedisClusterProperties.java b/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/RedisClusterProperties.java index 1e9def6..7ded1a4 100644 --- a/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/RedisClusterProperties.java +++ b/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/RedisClusterProperties.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/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/lock/RedisLockService.java b/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/lock/RedisLockService.java index f4b358b..b31ceb2 100644 --- a/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/lock/RedisLockService.java +++ b/spring-cloud-cluster-redis/src/main/java/org/springframework/cloud/cluster/redis/lock/RedisLockService.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/spring-cloud-cluster-redis/src/test/java/org/springframework/cloud/cluster/redis/lock/RedisIT.java b/spring-cloud-cluster-redis/src/test/java/org/springframework/cloud/cluster/redis/lock/RedisIT.java index dd068ba..6288366 100644 --- a/spring-cloud-cluster-redis/src/test/java/org/springframework/cloud/cluster/redis/lock/RedisIT.java +++ b/spring-cloud-cluster-redis/src/test/java/org/springframework/cloud/cluster/redis/lock/RedisIT.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/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/ZookeeperClusterProperties.java b/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/ZookeeperClusterProperties.java index 5e43817..9123716 100644 --- a/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/ZookeeperClusterProperties.java +++ b/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/ZookeeperClusterProperties.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/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBean.java b/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBean.java index beedde9..9ac770d 100644 --- a/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBean.java +++ b/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBean.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/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/leader/LeaderInitiator.java b/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/leader/LeaderInitiator.java index ffaead7..3265728 100644 --- a/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/leader/LeaderInitiator.java +++ b/spring-cloud-cluster-zookeeper/src/main/java/org/springframework/cloud/cluster/zk/leader/LeaderInitiator.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/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBeanTests.java b/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBeanTests.java index df1108b..22bc2a6 100644 --- a/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBeanTests.java +++ b/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/curator/CuratorFrameworkFactoryBeanTests.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/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/leader/ZookeeperTests.java b/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/leader/ZookeeperTests.java index 378d480..8f0fedb 100644 --- a/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/leader/ZookeeperTests.java +++ b/spring-cloud-cluster-zookeeper/src/test/java/org/springframework/cloud/cluster/zk/leader/ZookeeperTests.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,