From 12a675e04532fd027ca6eb50b147caa6a348442e Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 13:58: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). 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 134 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). * [ ] http://www.apache.org/licenses/LICENSE-2.0.html with 1 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0.html ([https](https://www.apache.org/licenses/LICENSE-2.0.html) result 200). Resolves gh-30. --- .../java/example/app/temp/event/BoilingTemperatureEvent.java | 2 +- .../java/example/app/temp/event/FreezingTemperatureEvent.java | 2 +- .../src/main/java/example/app/temp/event/TemperatureEvent.java | 2 +- .../app/temp/geode/client/BootGeodeClientApplication.java | 2 +- .../app/temp/geode/server/BootGeodeServerApplication.java | 2 +- .../main/java/example/app/temp/model/TemperatureReading.java | 2 +- .../example/app/temp/repo/TemperatureReadingRepository.java | 2 +- .../main/java/example/app/temp/service/TemperatureMonitor.java | 2 +- .../main/java/example/app/temp/service/TemperatureSensor.java | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/samples/boot/actuator/src/main/java/example/app/temp/event/BoilingTemperatureEvent.java b/samples/boot/actuator/src/main/java/example/app/temp/event/BoilingTemperatureEvent.java index b062f181..844f8c23 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/event/BoilingTemperatureEvent.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/event/BoilingTemperatureEvent.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/samples/boot/actuator/src/main/java/example/app/temp/event/FreezingTemperatureEvent.java b/samples/boot/actuator/src/main/java/example/app/temp/event/FreezingTemperatureEvent.java index 1229c919..2c78c3bc 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/event/FreezingTemperatureEvent.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/event/FreezingTemperatureEvent.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/samples/boot/actuator/src/main/java/example/app/temp/event/TemperatureEvent.java b/samples/boot/actuator/src/main/java/example/app/temp/event/TemperatureEvent.java index ea5b4088..313e29f2 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/event/TemperatureEvent.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/event/TemperatureEvent.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/samples/boot/actuator/src/main/java/example/app/temp/geode/client/BootGeodeClientApplication.java b/samples/boot/actuator/src/main/java/example/app/temp/geode/client/BootGeodeClientApplication.java index 240358e5..d35282dc 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/geode/client/BootGeodeClientApplication.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/geode/client/BootGeodeClientApplication.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/samples/boot/actuator/src/main/java/example/app/temp/geode/server/BootGeodeServerApplication.java b/samples/boot/actuator/src/main/java/example/app/temp/geode/server/BootGeodeServerApplication.java index b7120d7b..fc544fe8 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/geode/server/BootGeodeServerApplication.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/geode/server/BootGeodeServerApplication.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/samples/boot/actuator/src/main/java/example/app/temp/model/TemperatureReading.java b/samples/boot/actuator/src/main/java/example/app/temp/model/TemperatureReading.java index 2e8d2d47..ad54b0d9 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/model/TemperatureReading.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/model/TemperatureReading.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/samples/boot/actuator/src/main/java/example/app/temp/repo/TemperatureReadingRepository.java b/samples/boot/actuator/src/main/java/example/app/temp/repo/TemperatureReadingRepository.java index e20015df..40db3b2c 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/repo/TemperatureReadingRepository.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/repo/TemperatureReadingRepository.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/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureMonitor.java b/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureMonitor.java index 1d0703f7..b2cd98e2 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureMonitor.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureMonitor.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/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureSensor.java b/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureSensor.java index 060d95d0..315399db 100644 --- a/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureSensor.java +++ b/samples/boot/actuator/src/main/java/example/app/temp/service/TemperatureSensor.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,