From 7070ef7dd7b357480e006ced8e43d9b1ed32af02 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 15:29:50 -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 71 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE | 4 ++-- README.md | 2 +- .../README.md | 2 +- .../org/springframework/showcases/lite/AboutController.java | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../org/springframework/showcases/lite/config/WebConfig.java | 2 +- .../springframework/showcases/lite/config/WebInitializer.java | 2 +- .../springframework/showcases/lite/AboutControllerTest.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- .../lite-device-delegating-view-resolver-jc/README.md | 2 +- .../org/springframework/showcases/lite/AboutController.java | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../org/springframework/showcases/lite/config/WebConfig.java | 2 +- .../springframework/showcases/lite/config/WebInitializer.java | 2 +- .../springframework/showcases/lite/AboutControllerTest.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- archive/java-configuration/lite-device-resolver-jc/README.md | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../org/springframework/showcases/lite/config/WebConfig.java | 2 +- .../springframework/showcases/lite/config/WebInitializer.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- .../java/org/springframework/showcases/lite/StubDevice.java | 2 +- .../lite-site-preference-handler-jc/README.md | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../org/springframework/showcases/lite/config/WebConfig.java | 2 +- .../springframework/showcases/lite/config/WebInitializer.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- .../lite-site-switcher-handler-jc-mdot/README.md | 2 +- .../org/springframework/showcases/lite/AboutController.java | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../org/springframework/showcases/lite/config/WebConfig.java | 2 +- .../springframework/showcases/lite/config/WebInitializer.java | 2 +- .../springframework/showcases/lite/AboutControllerTest.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- .../lite-site-switcher-handler-jc-urlpath/README.md | 2 +- .../org/springframework/showcases/lite/AboutController.java | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../org/springframework/showcases/lite/config/WebConfig.java | 2 +- .../springframework/showcases/lite/config/WebInitializer.java | 2 +- .../springframework/showcases/lite/AboutControllerTest.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- .../lite-device-delegating-view-resolver-xml/README.md | 2 +- .../org/springframework/showcases/lite/AboutController.java | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../springframework/showcases/lite/AboutControllerTest.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- archive/xml-configuration/lite-device-resolver-xml/README.md | 2 +- .../org/springframework/showcases/lite/HomeController.java | 2 +- .../springframework/showcases/lite/HomeControllerTest.java | 2 +- .../java/org/springframework/showcases/lite/StubDevice.java | 2 +- archive/xml-configuration/thorax-lumbar-client/README.md | 2 +- lite-device-delegating-view-resolver-jsp/README.md | 2 +- .../src/main/java/showcases/AboutController.java | 2 +- .../src/main/java/showcases/Application.java | 2 +- .../src/main/java/showcases/HomeController.java | 2 +- .../src/test/java/showcases/AboutControllerTest.java | 2 +- .../src/test/java/showcases/HomeControllerTest.java | 2 +- lite-device-delegating-view-resolver/README.md | 2 +- .../src/main/java/showcases/AboutController.java | 2 +- .../src/main/java/showcases/Application.java | 2 +- .../src/main/java/showcases/HomeController.java | 2 +- .../src/test/java/showcases/AboutControllerTest.java | 2 +- .../src/test/java/showcases/HomeControllerTest.java | 2 +- lite-device-resolver/README.md | 2 +- lite-device-resolver/src/main/java/showcases/Application.java | 2 +- .../src/main/java/showcases/HomeController.java | 2 +- .../src/test/java/showcases/HomeControllerTest.java | 2 +- lite-site-preference-handler-jsp/README.md | 2 +- .../src/main/java/showcases/Application.java | 2 +- .../src/main/java/showcases/HomeController.java | 2 +- .../src/test/java/showcases/HomeControllerTest.java | 2 +- 71 files changed, 72 insertions(+), 72 deletions(-) diff --git a/LICENSE b/LICENSE index f49a4e1..cda8001 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ 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 @@ -192,7 +192,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/README.md b/README.md index 00f5c0f..e932274 100644 --- a/README.md +++ b/README.md @@ -39,4 +39,4 @@ There are several sample applications that illustrate Java or XML based configur [lite-site-preference-handler-jsp]: ./lite-site-preference-handler-jsp [Pull requests]: https://help.github.com/send-pull-requests [contributor guidelines]: CONTRIBUTING.md -[Apache license]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache license]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/README.md b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/README.md index 92281ae..80a2100 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/README.md +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/README.md @@ -48,4 +48,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/AboutController.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/AboutController.java index 6b5df89..468e53d 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/AboutController.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/AboutController.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/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/HomeController.java index db2954b..719cf05 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebConfig.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebConfig.java index 70e3dfa..931679e 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebConfig.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebConfig.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/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java index 0355c5c..1034b08 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/main/java/org/springframework/showcases/lite/config/WebInitializer.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/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java index 357bceb..79b281b 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/AboutControllerTest.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/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index b55f640..b99a184 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc-thymeleaf/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/java-configuration/lite-device-delegating-view-resolver-jc/README.md b/archive/java-configuration/lite-device-delegating-view-resolver-jc/README.md index a2c8b0b..ddda7e0 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/README.md +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/README.md @@ -48,4 +48,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/AboutController.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/AboutController.java index 98e92a1..968b0c3 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/AboutController.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/AboutController.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/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.java index e6361b4..52697f5 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java index 0dbed6c..864b38d 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.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/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java index 0355c5c..1034b08 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.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/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java index c48a41c..241563b 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/AboutControllerTest.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/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index 55862c1..53835aa 100644 --- a/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/java-configuration/lite-device-delegating-view-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/java-configuration/lite-device-resolver-jc/README.md b/archive/java-configuration/lite-device-resolver-jc/README.md index 939734f..af581f0 100644 --- a/archive/java-configuration/lite-device-resolver-jc/README.md +++ b/archive/java-configuration/lite-device-resolver-jc/README.md @@ -46,4 +46,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.java index 1a63b23..3b8cb3a 100644 --- a/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java b/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java index 560def9..3ef3e6f 100644 --- a/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java +++ b/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.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/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java b/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java index 0355c5c..1034b08 100644 --- a/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java +++ b/archive/java-configuration/lite-device-resolver-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.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/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index 55f0539..705a1ef 100644 --- a/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/StubDevice.java b/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/StubDevice.java index 543ef70..1faef94 100644 --- a/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/StubDevice.java +++ b/archive/java-configuration/lite-device-resolver-jc/src/test/java/org/springframework/showcases/lite/StubDevice.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/archive/java-configuration/lite-site-preference-handler-jc/README.md b/archive/java-configuration/lite-site-preference-handler-jc/README.md index 80f40ca..de17770 100644 --- a/archive/java-configuration/lite-site-preference-handler-jc/README.md +++ b/archive/java-configuration/lite-site-preference-handler-jc/README.md @@ -47,4 +47,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/HomeController.java index 781a92c..0fa09f0 100644 --- a/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java b/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java index 2316eb0..cd5eed7 100644 --- a/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.java +++ b/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebConfig.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/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java b/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java index 0355c5c..1034b08 100644 --- a/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java +++ b/archive/java-configuration/lite-site-preference-handler-jc/src/main/java/org/springframework/showcases/lite/config/WebInitializer.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/archive/java-configuration/lite-site-preference-handler-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/java-configuration/lite-site-preference-handler-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index 9a26101..147ab5e 100644 --- a/archive/java-configuration/lite-site-preference-handler-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/java-configuration/lite-site-preference-handler-jc/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/java-configuration/lite-site-switcher-handler-jc-mdot/README.md b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/README.md index e4c0de7..232170b 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/README.md +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/README.md @@ -50,4 +50,4 @@ A [Spring Mobile] sample application demonstrating the [`mDot`] Site Switcher st [`mDot`]: https://docs.spring.io/spring-mobile/docs/1.1.x/reference/html/device.html#site-switcher-handler-interceptor-mdot [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/AboutController.java b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/AboutController.java index 48c7723..dac93db 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/AboutController.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/AboutController.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/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/HomeController.java index ff786f7..6984143 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebConfig.java b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebConfig.java index bc08763..0612d2f 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebConfig.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebConfig.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/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java index 0355c5c..1034b08 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/main/java/org/springframework/showcases/lite/config/WebInitializer.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/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java index e62a1b6..baae66b 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/AboutControllerTest.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/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index 698b264..a921713 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-mdot/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/README.md b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/README.md index 247136a..342e4f1 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/README.md +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/README.md @@ -47,4 +47,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [`urlPath`]: https://docs.spring.io/spring-mobile/docs/1.1.x/reference/html/device.html#site-switcher-handler-interceptor-urlpath [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/AboutController.java b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/AboutController.java index 7c2d2c0..5340538 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/AboutController.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/AboutController.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/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/HomeController.java index 02d3807..50c3bf2 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebConfig.java b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebConfig.java index c6a36d9..d0cedb0 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebConfig.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebConfig.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/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java index 939db0b..ddfdda1 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebInitializer.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/main/java/org/springframework/showcases/lite/config/WebInitializer.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/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java index d1c50eb..89af4fe 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/AboutControllerTest.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/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index fae2442..d604bc9 100644 --- a/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/java-configuration/lite-site-switcher-handler-jc-urlpath/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/xml-configuration/lite-device-delegating-view-resolver-xml/README.md b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/README.md index 44c71d0..a3b52fe 100644 --- a/archive/xml-configuration/lite-device-delegating-view-resolver-xml/README.md +++ b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/README.md @@ -48,4 +48,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/AboutController.java b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/AboutController.java index 6b5df89..468e53d 100644 --- a/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/AboutController.java +++ b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/AboutController.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/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.java index db2954b..719cf05 100644 --- a/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java index 357bceb..79b281b 100644 --- a/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/AboutControllerTest.java +++ b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/AboutControllerTest.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/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index b55f640..b99a184 100644 --- a/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/xml-configuration/lite-device-delegating-view-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/xml-configuration/lite-device-resolver-xml/README.md b/archive/xml-configuration/lite-device-resolver-xml/README.md index 7e4f4fe..d247253 100644 --- a/archive/xml-configuration/lite-device-resolver-xml/README.md +++ b/archive/xml-configuration/lite-device-resolver-xml/README.md @@ -46,4 +46,4 @@ A [Spring Mobile] sample application demonstrating many of the capabilities of t [Spring Mobile]: https://projects.spring.io/spring-mobile -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/archive/xml-configuration/lite-device-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.java b/archive/xml-configuration/lite-device-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.java index 1a63b23..3b8cb3a 100644 --- a/archive/xml-configuration/lite-device-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.java +++ b/archive/xml-configuration/lite-device-resolver-xml/src/main/java/org/springframework/showcases/lite/HomeController.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/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java b/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java index 55f0539..705a1ef 100644 --- a/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.java +++ b/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/HomeControllerTest.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/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/StubDevice.java b/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/StubDevice.java index 543ef70..1faef94 100644 --- a/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/StubDevice.java +++ b/archive/xml-configuration/lite-device-resolver-xml/src/test/java/org/springframework/showcases/lite/StubDevice.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/archive/xml-configuration/thorax-lumbar-client/README.md b/archive/xml-configuration/thorax-lumbar-client/README.md index b53dc2e..e6c066f 100644 --- a/archive/xml-configuration/thorax-lumbar-client/README.md +++ b/archive/xml-configuration/thorax-lumbar-client/README.md @@ -69,4 +69,4 @@ In order to build this application, you must have Lumbar installed. You do not n [Backbone]: https://backbonejs.org/ [Gradle]: https://www.gradle.org/ [app-url]: http://localhost:8080/thorax-client -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/lite-device-delegating-view-resolver-jsp/README.md b/lite-device-delegating-view-resolver-jsp/README.md index c7823bb..54febf3 100644 --- a/lite-device-delegating-view-resolver-jsp/README.md +++ b/lite-device-delegating-view-resolver-jsp/README.md @@ -59,4 +59,4 @@ spring.mobile.devicedelegatingviewresolver.enabled: true [Spring Mobile]: https://projects.spring.io/spring-mobile [Spring Boot]: https://projects.spring.io/spring-boot -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/AboutController.java b/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/AboutController.java index 153b2ae..f3ec2ad 100644 --- a/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/AboutController.java +++ b/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/AboutController.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/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/Application.java b/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/Application.java index 212f205..d6fe305 100644 --- a/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/Application.java +++ b/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/Application.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/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/HomeController.java b/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/HomeController.java index 04bad89..b04ec3e 100644 --- a/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/HomeController.java +++ b/lite-device-delegating-view-resolver-jsp/src/main/java/showcases/HomeController.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/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/AboutControllerTest.java b/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/AboutControllerTest.java index 64bd581..b093f21 100644 --- a/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/AboutControllerTest.java +++ b/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/AboutControllerTest.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/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/HomeControllerTest.java b/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/HomeControllerTest.java index e9ff0b7..4937a27 100644 --- a/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/HomeControllerTest.java +++ b/lite-device-delegating-view-resolver-jsp/src/test/java/showcases/HomeControllerTest.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/lite-device-delegating-view-resolver/README.md b/lite-device-delegating-view-resolver/README.md index b0ee622..201b33f 100644 --- a/lite-device-delegating-view-resolver/README.md +++ b/lite-device-delegating-view-resolver/README.md @@ -59,4 +59,4 @@ spring.mobile.devicedelegatingviewresolver.enabled: true [Spring Mobile]: https://projects.spring.io/spring-mobile [Spring Boot]: https://projects.spring.io/spring-boot -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/lite-device-delegating-view-resolver/src/main/java/showcases/AboutController.java b/lite-device-delegating-view-resolver/src/main/java/showcases/AboutController.java index 6921fffa..919558a 100644 --- a/lite-device-delegating-view-resolver/src/main/java/showcases/AboutController.java +++ b/lite-device-delegating-view-resolver/src/main/java/showcases/AboutController.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/lite-device-delegating-view-resolver/src/main/java/showcases/Application.java b/lite-device-delegating-view-resolver/src/main/java/showcases/Application.java index aef495b..a8c1e08 100644 --- a/lite-device-delegating-view-resolver/src/main/java/showcases/Application.java +++ b/lite-device-delegating-view-resolver/src/main/java/showcases/Application.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/lite-device-delegating-view-resolver/src/main/java/showcases/HomeController.java b/lite-device-delegating-view-resolver/src/main/java/showcases/HomeController.java index e78af33..2326f02 100644 --- a/lite-device-delegating-view-resolver/src/main/java/showcases/HomeController.java +++ b/lite-device-delegating-view-resolver/src/main/java/showcases/HomeController.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/lite-device-delegating-view-resolver/src/test/java/showcases/AboutControllerTest.java b/lite-device-delegating-view-resolver/src/test/java/showcases/AboutControllerTest.java index b54cf49..e06f13a 100644 --- a/lite-device-delegating-view-resolver/src/test/java/showcases/AboutControllerTest.java +++ b/lite-device-delegating-view-resolver/src/test/java/showcases/AboutControllerTest.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/lite-device-delegating-view-resolver/src/test/java/showcases/HomeControllerTest.java b/lite-device-delegating-view-resolver/src/test/java/showcases/HomeControllerTest.java index 1757f88..915e4fd 100644 --- a/lite-device-delegating-view-resolver/src/test/java/showcases/HomeControllerTest.java +++ b/lite-device-delegating-view-resolver/src/test/java/showcases/HomeControllerTest.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/lite-device-resolver/README.md b/lite-device-resolver/README.md index 477a321..2e4d741 100644 --- a/lite-device-resolver/README.md +++ b/lite-device-resolver/README.md @@ -44,4 +44,4 @@ A [Spring Mobile] sample application demonstrating the Device Resolver capabilit [Spring Mobile]: https://projects.spring.io/spring-mobile [Spring Boot]: https://projects.spring.io/spring-boot -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/lite-device-resolver/src/main/java/showcases/Application.java b/lite-device-resolver/src/main/java/showcases/Application.java index aef495b..a8c1e08 100644 --- a/lite-device-resolver/src/main/java/showcases/Application.java +++ b/lite-device-resolver/src/main/java/showcases/Application.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/lite-device-resolver/src/main/java/showcases/HomeController.java b/lite-device-resolver/src/main/java/showcases/HomeController.java index 430ffac..e93414b 100644 --- a/lite-device-resolver/src/main/java/showcases/HomeController.java +++ b/lite-device-resolver/src/main/java/showcases/HomeController.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/lite-device-resolver/src/test/java/showcases/HomeControllerTest.java b/lite-device-resolver/src/test/java/showcases/HomeControllerTest.java index dc37a94..2b0094a 100644 --- a/lite-device-resolver/src/test/java/showcases/HomeControllerTest.java +++ b/lite-device-resolver/src/test/java/showcases/HomeControllerTest.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/lite-site-preference-handler-jsp/README.md b/lite-site-preference-handler-jsp/README.md index fcc6534..628e5c3 100644 --- a/lite-site-preference-handler-jsp/README.md +++ b/lite-site-preference-handler-jsp/README.md @@ -57,4 +57,4 @@ spring.mobile.sitepreference.enabled: false [Spring Mobile]: https://projects.spring.io/spring-mobile [Spring Boot]: https://projects.spring.io/spring-boot -[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 +[Apache License]: https://www.apache.org/licenses/LICENSE-2.0 diff --git a/lite-site-preference-handler-jsp/src/main/java/showcases/Application.java b/lite-site-preference-handler-jsp/src/main/java/showcases/Application.java index 13b2608..258af0e 100644 --- a/lite-site-preference-handler-jsp/src/main/java/showcases/Application.java +++ b/lite-site-preference-handler-jsp/src/main/java/showcases/Application.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/lite-site-preference-handler-jsp/src/main/java/showcases/HomeController.java b/lite-site-preference-handler-jsp/src/main/java/showcases/HomeController.java index ea6ec96..553dbce 100644 --- a/lite-site-preference-handler-jsp/src/main/java/showcases/HomeController.java +++ b/lite-site-preference-handler-jsp/src/main/java/showcases/HomeController.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/lite-site-preference-handler-jsp/src/test/java/showcases/HomeControllerTest.java b/lite-site-preference-handler-jsp/src/test/java/showcases/HomeControllerTest.java index 670179c..fb0c2ab 100644 --- a/lite-site-preference-handler-jsp/src/test/java/showcases/HomeControllerTest.java +++ b/lite-site-preference-handler-jsp/src/test/java/showcases/HomeControllerTest.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,