From c51bf3ef6855ff7ed04300424eed418308957f48 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 04:44:49 -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/LICENSE-2.0 with 14 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- .../src/main/java/example/customers/Address.java | 2 +- .../src/main/java/example/customers/Customer.java | 2 +- .../src/main/java/example/customers/CustomerApp.java | 2 +- .../src/main/java/example/customers/CustomerRepository.java | 2 +- .../src/main/java/example/customers/Location.java | 2 +- .../customers/integration/CustomerResourceProcessor.java | 2 +- .../java/example/customers/integration/StoreIntegration.java | 2 +- .../example/customers/CustomerRepositoryIntegrationTest.java | 2 +- .../src/main/java/example/stores/Address.java | 2 +- .../src/main/java/example/stores/Store.java | 2 +- .../src/main/java/example/stores/StoreApp.java | 2 +- .../src/main/java/example/stores/StoreInitializer.java | 2 +- .../src/main/java/example/stores/StoreRepository.java | 2 +- .../java/example/stores/StoreRepositoryIntegrationTests.java | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/rest-microservices-customers/src/main/java/example/customers/Address.java b/rest-microservices-customers/src/main/java/example/customers/Address.java index da50b97..d6e3fd2 100644 --- a/rest-microservices-customers/src/main/java/example/customers/Address.java +++ b/rest-microservices-customers/src/main/java/example/customers/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/rest-microservices-customers/src/main/java/example/customers/Customer.java b/rest-microservices-customers/src/main/java/example/customers/Customer.java index 3b99e64..c04c768 100644 --- a/rest-microservices-customers/src/main/java/example/customers/Customer.java +++ b/rest-microservices-customers/src/main/java/example/customers/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/rest-microservices-customers/src/main/java/example/customers/CustomerApp.java b/rest-microservices-customers/src/main/java/example/customers/CustomerApp.java index b01d895..705fa4f 100644 --- a/rest-microservices-customers/src/main/java/example/customers/CustomerApp.java +++ b/rest-microservices-customers/src/main/java/example/customers/CustomerApp.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/rest-microservices-customers/src/main/java/example/customers/CustomerRepository.java b/rest-microservices-customers/src/main/java/example/customers/CustomerRepository.java index de76ba3..dcac3ff 100644 --- a/rest-microservices-customers/src/main/java/example/customers/CustomerRepository.java +++ b/rest-microservices-customers/src/main/java/example/customers/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/rest-microservices-customers/src/main/java/example/customers/Location.java b/rest-microservices-customers/src/main/java/example/customers/Location.java index ead1827..3bbe4c4 100644 --- a/rest-microservices-customers/src/main/java/example/customers/Location.java +++ b/rest-microservices-customers/src/main/java/example/customers/Location.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/rest-microservices-customers/src/main/java/example/customers/integration/CustomerResourceProcessor.java b/rest-microservices-customers/src/main/java/example/customers/integration/CustomerResourceProcessor.java index 477d21a..51ef2d0 100644 --- a/rest-microservices-customers/src/main/java/example/customers/integration/CustomerResourceProcessor.java +++ b/rest-microservices-customers/src/main/java/example/customers/integration/CustomerResourceProcessor.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/rest-microservices-customers/src/main/java/example/customers/integration/StoreIntegration.java b/rest-microservices-customers/src/main/java/example/customers/integration/StoreIntegration.java index 59748c5..82a90bf 100644 --- a/rest-microservices-customers/src/main/java/example/customers/integration/StoreIntegration.java +++ b/rest-microservices-customers/src/main/java/example/customers/integration/StoreIntegration.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/rest-microservices-customers/src/test/java/example/customers/CustomerRepositoryIntegrationTest.java b/rest-microservices-customers/src/test/java/example/customers/CustomerRepositoryIntegrationTest.java index bd479b0..fcaa8be 100644 --- a/rest-microservices-customers/src/test/java/example/customers/CustomerRepositoryIntegrationTest.java +++ b/rest-microservices-customers/src/test/java/example/customers/CustomerRepositoryIntegrationTest.java @@ -16,7 +16,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/rest-microservices-store/src/main/java/example/stores/Address.java b/rest-microservices-store/src/main/java/example/stores/Address.java index 74fb86c..62cab48 100644 --- a/rest-microservices-store/src/main/java/example/stores/Address.java +++ b/rest-microservices-store/src/main/java/example/stores/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/rest-microservices-store/src/main/java/example/stores/Store.java b/rest-microservices-store/src/main/java/example/stores/Store.java index d25106e..26782d7 100644 --- a/rest-microservices-store/src/main/java/example/stores/Store.java +++ b/rest-microservices-store/src/main/java/example/stores/Store.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/rest-microservices-store/src/main/java/example/stores/StoreApp.java b/rest-microservices-store/src/main/java/example/stores/StoreApp.java index 24c0c26..4c95858 100644 --- a/rest-microservices-store/src/main/java/example/stores/StoreApp.java +++ b/rest-microservices-store/src/main/java/example/stores/StoreApp.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/rest-microservices-store/src/main/java/example/stores/StoreInitializer.java b/rest-microservices-store/src/main/java/example/stores/StoreInitializer.java index ead73f8..bbdd2c7 100644 --- a/rest-microservices-store/src/main/java/example/stores/StoreInitializer.java +++ b/rest-microservices-store/src/main/java/example/stores/StoreInitializer.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/rest-microservices-store/src/main/java/example/stores/StoreRepository.java b/rest-microservices-store/src/main/java/example/stores/StoreRepository.java index c35f9f0..8b9d8da 100644 --- a/rest-microservices-store/src/main/java/example/stores/StoreRepository.java +++ b/rest-microservices-store/src/main/java/example/stores/StoreRepository.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/rest-microservices-store/src/test/java/example/stores/StoreRepositoryIntegrationTests.java b/rest-microservices-store/src/test/java/example/stores/StoreRepositoryIntegrationTests.java index 95e578c..8529e7b 100644 --- a/rest-microservices-store/src/test/java/example/stores/StoreRepositoryIntegrationTests.java +++ b/rest-microservices-store/src/test/java/example/stores/StoreRepositoryIntegrationTests.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,