From db0117f3681f1790612655b0be3aaaac7d03f62c Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 00:19:31 -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 137 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE | 2 +- NOTICE | 2 +- src/main/java/io/pivotal/cla/PivotalClaApplication.java | 2 +- src/main/java/io/pivotal/cla/config/ClaOAuthConfig.java | 2 +- src/main/java/io/pivotal/cla/config/DatabaseConfig.java | 2 +- .../java/io/pivotal/cla/config/GenerateAccessTokenConfig.java | 2 +- src/main/java/io/pivotal/cla/config/GitHubClaProfiles.java | 2 +- src/main/java/io/pivotal/cla/config/OAuthClientCredentials.java | 2 +- src/main/java/io/pivotal/cla/config/SecurityConfig.java | 2 +- src/main/java/io/pivotal/cla/config/SessionConfig.java | 2 +- src/main/java/io/pivotal/cla/config/WebMvcConfig.java | 2 +- src/main/java/io/pivotal/cla/data/AccessToken.java | 2 +- .../java/io/pivotal/cla/data/ContributorLicenseAgreement.java | 2 +- src/main/java/io/pivotal/cla/data/CorporateSignature.java | 2 +- src/main/java/io/pivotal/cla/data/IndividualSignature.java | 2 +- src/main/java/io/pivotal/cla/data/MarkdownContent.java | 2 +- src/main/java/io/pivotal/cla/data/User.java | 2 +- .../io/pivotal/cla/data/repository/AccessTokenRepository.java | 2 +- .../data/repository/ContributorLicenseAgreementRepository.java | 2 +- .../cla/data/repository/CorporateSignatureRepository.java | 2 +- .../cla/data/repository/IndividualSignatureRepository.java | 2 +- .../java/io/pivotal/cla/data/repository/UserRepository.java | 2 +- .../io/pivotal/cla/egit/github/core/ContextCommitStatus.java | 2 +- src/main/java/io/pivotal/cla/egit/github/core/Email.java | 2 +- .../io/pivotal/cla/egit/github/core/EventsRepositoryHook.java | 2 +- .../java/io/pivotal/cla/egit/github/core/PullRequestId.java | 2 +- .../io/pivotal/cla/egit/github/core/event/GithubEvents.java | 2 +- .../io/pivotal/cla/egit/github/core/event/RepositoryAware.java | 2 +- .../egit/github/core/event/RepositoryIssueCommentPayload.java | 2 +- .../egit/github/core/event/RepositoryPullRequestPayload.java | 2 +- .../core/event/RepositoryPullRequestReviewCommentPayload.java | 2 +- .../java/io/pivotal/cla/egit/github/core/event/SenderAware.java | 2 +- .../cla/egit/github/core/service/ContextCommitService.java | 2 +- .../io/pivotal/cla/egit/github/core/service/EmailService.java | 2 +- src/main/java/io/pivotal/cla/mvc/AboutController.java | 2 +- src/main/java/io/pivotal/cla/mvc/CclaController.java | 2 +- src/main/java/io/pivotal/cla/mvc/ClaController.java | 2 +- src/main/java/io/pivotal/cla/mvc/ClaRequest.java | 2 +- src/main/java/io/pivotal/cla/mvc/FaqController.java | 2 +- src/main/java/io/pivotal/cla/mvc/HomeController.java | 2 +- src/main/java/io/pivotal/cla/mvc/IclaController.java | 2 +- src/main/java/io/pivotal/cla/mvc/ResourceNotFoundException.java | 2 +- src/main/java/io/pivotal/cla/mvc/SignClaForm.java | 2 +- src/main/java/io/pivotal/cla/mvc/SignCorporateClaForm.java | 2 +- src/main/java/io/pivotal/cla/mvc/admin/AdminClaController.java | 2 +- src/main/java/io/pivotal/cla/mvc/admin/AdminController.java | 2 +- .../java/io/pivotal/cla/mvc/admin/AdminCrudClaController.java | 2 +- src/main/java/io/pivotal/cla/mvc/admin/AdminHelpController.java | 2 +- .../java/io/pivotal/cla/mvc/admin/AdminLinkClaController.java | 2 +- src/main/java/io/pivotal/cla/mvc/admin/ClaForm.java | 2 +- src/main/java/io/pivotal/cla/mvc/admin/LinkClaForm.java | 2 +- .../java/io/pivotal/cla/mvc/github/GitHubHooksController.java | 2 +- src/main/java/io/pivotal/cla/mvc/security/OAuthController.java | 2 +- .../java/io/pivotal/cla/mvc/security/UserControllerAdvice.java | 2 +- .../pivotal/cla/mvc/support/ImportedSignaturesSessionAttr.java | 2 +- .../cla/mvc/support/ImportedSignaturesSessionAttrResolver.java | 2 +- src/main/java/io/pivotal/cla/mvc/util/UrlBuilder.java | 2 +- .../io/pivotal/cla/security/GitHubAuthenticationEntryPoint.java | 2 +- src/main/java/io/pivotal/cla/security/GitHubSignature.java | 2 +- src/main/java/io/pivotal/cla/security/Login.java | 2 +- .../java/io/pivotal/cla/service/github/AccessTokenRequest.java | 2 +- .../io/pivotal/cla/service/github/ContributingUrlsResponse.java | 2 +- .../cla/service/github/CreatePullRequestHookRequest.java | 2 +- .../java/io/pivotal/cla/service/github/CurrentUserRequest.java | 2 +- src/main/java/io/pivotal/cla/service/github/GitHubApi.java | 2 +- src/main/java/io/pivotal/cla/service/github/MylynGitHubApi.java | 2 +- .../io/pivotal/cla/service/github/OAuthAccessTokenParams.java | 2 +- .../java/io/pivotal/cla/service/github/PullRequestStatus.java | 2 +- src/main/resources/application-dev.properties | 2 +- src/main/resources/static/assets/css/components.css | 2 +- src/main/resources/static/assets/css/theme.css | 2 +- src/main/resources/static/assets/layouts/main.css | 2 +- src/main/resources/static/assets/layouts/main.js | 2 +- src/main/resources/static/assets/pages/admin/cla/link.css | 2 +- src/main/resources/static/assets/pages/admin/cla/link.js | 2 +- src/main/resources/static/assets/pages/cla/ccla/sign.js | 2 +- src/main/resources/static/assets/pages/cla/icla/sign.js | 2 +- src/test/java/io/pivotal/cla/MocksConfig.java | 2 +- src/test/java/io/pivotal/cla/config/ClaOAuthConfigTests.java | 2 +- src/test/java/io/pivotal/cla/data/DataUtils.java | 2 +- .../cla/data/repository/CorporateSignatureRepositoryTests.java | 2 +- .../java/io/pivotal/cla/data/repository/DefaultMethodMock.java | 2 +- .../cla/data/repository/IndividualSignatureRepositoryTests.java | 2 +- src/test/java/io/pivotal/cla/junit/JpaTests.java | 2 +- .../io/pivotal/cla/mvc/github/GitHubHooksControllerTests.java | 2 +- .../mvc/support/ImportedSignaturesSessionAttrResolverTests.java | 2 +- .../cla/mvc/support/ImportedSignaturesSessionAttrTests.java | 2 +- src/test/java/io/pivotal/cla/security/GitHubSignatureTests.java | 2 +- src/test/java/io/pivotal/cla/security/WithAdminUser.java | 2 +- src/test/java/io/pivotal/cla/security/WithAdminUserFactory.java | 2 +- src/test/java/io/pivotal/cla/security/WithClaAuthorUser.java | 2 +- .../java/io/pivotal/cla/security/WithClaAuthorUserFactory.java | 2 +- src/test/java/io/pivotal/cla/security/WithSigningUser.java | 2 +- .../java/io/pivotal/cla/security/WithSigningUserFactory.java | 2 +- .../io/pivotal/cla/service/github/MylynGitHubApiITests.java | 2 +- .../pivotal/cla/test/context/SystemActiveProfilesResolver.java | 2 +- .../cla/test/context/SystemActiveProfilesResolverTests.java | 2 +- .../io/pivotal/cla/test/context/SystemDataActiveProfiles.java | 2 +- .../java/io/pivotal/cla/webdriver/AboutControllerTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/AccessDeniedTests.java | 2 +- .../java/io/pivotal/cla/webdriver/ActuatorSecurityTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/AuthenticationTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/BaseWebDriverTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/CclaControllerTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/ClaControllerTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/FaqControllerTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/HomeControllerTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/IclaControllerTests.java | 2 +- .../java/io/pivotal/cla/webdriver/RequiresChannelTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/WebDriverContext.java | 2 +- .../io/pivotal/cla/webdriver/admin/AdminCreateClaTests.java | 2 +- .../java/io/pivotal/cla/webdriver/admin/AdminHelpTests.java | 2 +- .../java/io/pivotal/cla/webdriver/admin/AdminHomeTests.java | 2 +- .../java/io/pivotal/cla/webdriver/admin/AdminLinkClaTests.java | 2 +- .../java/io/pivotal/cla/webdriver/admin/AdminListClaTests.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/AboutPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/BasePage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/ErrorPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/FaqPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/HomePage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/ProfilePage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/SignCclaPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/SignClaPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/SignIclaPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/SignedPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/ViewCclaPage.java | 2 +- src/test/java/io/pivotal/cla/webdriver/pages/ViewIclaPage.java | 2 +- .../io/pivotal/cla/webdriver/pages/admin/AdminClaFormPage.java | 2 +- .../pivotal/cla/webdriver/pages/admin/AdminCreateClaPage.java | 2 +- .../io/pivotal/cla/webdriver/pages/admin/AdminEditClaPage.java | 2 +- .../pivotal/cla/webdriver/pages/admin/AdminHelpMigratePage.java | 2 +- .../io/pivotal/cla/webdriver/pages/admin/AdminHelpPage.java | 2 +- .../io/pivotal/cla/webdriver/pages/admin/AdminLinkClaPage.java | 2 +- .../io/pivotal/cla/webdriver/pages/admin/AdminListClasPage.java | 2 +- .../okhttp3/mockwebserver/EnqueueResourcesMockWebServer.java | 2 +- .../mockwebserver/EnqueueResourcesMockWebServerITest.java | 2 +- src/test/java/okhttp3/mockwebserver/MockResponseParser.java | 2 +- src/test/java/okhttp3/mockwebserver/MockResponseParserTest.java | 2 +- 138 files changed, 138 insertions(+), 138 deletions(-) diff --git a/LICENSE b/LICENSE index e434046f..9820f9ec 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 diff --git a/NOTICE b/NOTICE index 32c44ac0..da2999e8 100644 --- a/NOTICE +++ b/NOTICE @@ -6,7 +6,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/PivotalClaApplication.java b/src/main/java/io/pivotal/cla/PivotalClaApplication.java index ccf7fadd..3a8ad8ef 100644 --- a/src/main/java/io/pivotal/cla/PivotalClaApplication.java +++ b/src/main/java/io/pivotal/cla/PivotalClaApplication.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/ClaOAuthConfig.java b/src/main/java/io/pivotal/cla/config/ClaOAuthConfig.java index 8df08091..8e5e59b7 100644 --- a/src/main/java/io/pivotal/cla/config/ClaOAuthConfig.java +++ b/src/main/java/io/pivotal/cla/config/ClaOAuthConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/DatabaseConfig.java b/src/main/java/io/pivotal/cla/config/DatabaseConfig.java index c3ce5096..5c0c3d2e 100644 --- a/src/main/java/io/pivotal/cla/config/DatabaseConfig.java +++ b/src/main/java/io/pivotal/cla/config/DatabaseConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/GenerateAccessTokenConfig.java b/src/main/java/io/pivotal/cla/config/GenerateAccessTokenConfig.java index c76fb965..3b385cd5 100644 --- a/src/main/java/io/pivotal/cla/config/GenerateAccessTokenConfig.java +++ b/src/main/java/io/pivotal/cla/config/GenerateAccessTokenConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/GitHubClaProfiles.java b/src/main/java/io/pivotal/cla/config/GitHubClaProfiles.java index b88b9211..106c03c9 100644 --- a/src/main/java/io/pivotal/cla/config/GitHubClaProfiles.java +++ b/src/main/java/io/pivotal/cla/config/GitHubClaProfiles.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/OAuthClientCredentials.java b/src/main/java/io/pivotal/cla/config/OAuthClientCredentials.java index 51c90334..99354fc5 100644 --- a/src/main/java/io/pivotal/cla/config/OAuthClientCredentials.java +++ b/src/main/java/io/pivotal/cla/config/OAuthClientCredentials.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/SecurityConfig.java b/src/main/java/io/pivotal/cla/config/SecurityConfig.java index 13b879b4..8acc3074 100644 --- a/src/main/java/io/pivotal/cla/config/SecurityConfig.java +++ b/src/main/java/io/pivotal/cla/config/SecurityConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/SessionConfig.java b/src/main/java/io/pivotal/cla/config/SessionConfig.java index 019a049f..5a6ffc0c 100644 --- a/src/main/java/io/pivotal/cla/config/SessionConfig.java +++ b/src/main/java/io/pivotal/cla/config/SessionConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/config/WebMvcConfig.java b/src/main/java/io/pivotal/cla/config/WebMvcConfig.java index a886e9de..42dbc02f 100644 --- a/src/main/java/io/pivotal/cla/config/WebMvcConfig.java +++ b/src/main/java/io/pivotal/cla/config/WebMvcConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/AccessToken.java b/src/main/java/io/pivotal/cla/data/AccessToken.java index 6d4ec104..abdb8b46 100644 --- a/src/main/java/io/pivotal/cla/data/AccessToken.java +++ b/src/main/java/io/pivotal/cla/data/AccessToken.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/ContributorLicenseAgreement.java b/src/main/java/io/pivotal/cla/data/ContributorLicenseAgreement.java index 3acf4e08..2deadced 100644 --- a/src/main/java/io/pivotal/cla/data/ContributorLicenseAgreement.java +++ b/src/main/java/io/pivotal/cla/data/ContributorLicenseAgreement.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/CorporateSignature.java b/src/main/java/io/pivotal/cla/data/CorporateSignature.java index 97d5ea0e..ffa6d8fa 100644 --- a/src/main/java/io/pivotal/cla/data/CorporateSignature.java +++ b/src/main/java/io/pivotal/cla/data/CorporateSignature.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/IndividualSignature.java b/src/main/java/io/pivotal/cla/data/IndividualSignature.java index d41a4a49..a5bdf9bb 100644 --- a/src/main/java/io/pivotal/cla/data/IndividualSignature.java +++ b/src/main/java/io/pivotal/cla/data/IndividualSignature.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/MarkdownContent.java b/src/main/java/io/pivotal/cla/data/MarkdownContent.java index 69689e5a..9717b81e 100644 --- a/src/main/java/io/pivotal/cla/data/MarkdownContent.java +++ b/src/main/java/io/pivotal/cla/data/MarkdownContent.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/User.java b/src/main/java/io/pivotal/cla/data/User.java index d08583e2..3676867f 100644 --- a/src/main/java/io/pivotal/cla/data/User.java +++ b/src/main/java/io/pivotal/cla/data/User.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/repository/AccessTokenRepository.java b/src/main/java/io/pivotal/cla/data/repository/AccessTokenRepository.java index d96bfd10..1ce9f45d 100644 --- a/src/main/java/io/pivotal/cla/data/repository/AccessTokenRepository.java +++ b/src/main/java/io/pivotal/cla/data/repository/AccessTokenRepository.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/repository/ContributorLicenseAgreementRepository.java b/src/main/java/io/pivotal/cla/data/repository/ContributorLicenseAgreementRepository.java index 00ccf119..6e4ad553 100644 --- a/src/main/java/io/pivotal/cla/data/repository/ContributorLicenseAgreementRepository.java +++ b/src/main/java/io/pivotal/cla/data/repository/ContributorLicenseAgreementRepository.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/repository/CorporateSignatureRepository.java b/src/main/java/io/pivotal/cla/data/repository/CorporateSignatureRepository.java index 93aa1eaa..df467e66 100644 --- a/src/main/java/io/pivotal/cla/data/repository/CorporateSignatureRepository.java +++ b/src/main/java/io/pivotal/cla/data/repository/CorporateSignatureRepository.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/repository/IndividualSignatureRepository.java b/src/main/java/io/pivotal/cla/data/repository/IndividualSignatureRepository.java index b9ef7b65..48a61705 100644 --- a/src/main/java/io/pivotal/cla/data/repository/IndividualSignatureRepository.java +++ b/src/main/java/io/pivotal/cla/data/repository/IndividualSignatureRepository.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/data/repository/UserRepository.java b/src/main/java/io/pivotal/cla/data/repository/UserRepository.java index 9df29d3d..fc5c2203 100644 --- a/src/main/java/io/pivotal/cla/data/repository/UserRepository.java +++ b/src/main/java/io/pivotal/cla/data/repository/UserRepository.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/ContextCommitStatus.java b/src/main/java/io/pivotal/cla/egit/github/core/ContextCommitStatus.java index af117421..95a75a36 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/ContextCommitStatus.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/ContextCommitStatus.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/Email.java b/src/main/java/io/pivotal/cla/egit/github/core/Email.java index 61a976e7..52eec872 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/Email.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/Email.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/EventsRepositoryHook.java b/src/main/java/io/pivotal/cla/egit/github/core/EventsRepositoryHook.java index 56f1c5b4..1ce30a26 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/EventsRepositoryHook.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/EventsRepositoryHook.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/PullRequestId.java b/src/main/java/io/pivotal/cla/egit/github/core/PullRequestId.java index 050ed606..3678e00b 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/PullRequestId.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/PullRequestId.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/event/GithubEvents.java b/src/main/java/io/pivotal/cla/egit/github/core/event/GithubEvents.java index feee29ef..76c15f3f 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/event/GithubEvents.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/event/GithubEvents.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryAware.java b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryAware.java index b64e8c2c..06dc622a 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryAware.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryAware.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryIssueCommentPayload.java b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryIssueCommentPayload.java index 309ca1fd..d0d8875b 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryIssueCommentPayload.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryIssueCommentPayload.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestPayload.java b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestPayload.java index d06c157a..59b1a39b 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestPayload.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestPayload.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestReviewCommentPayload.java b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestReviewCommentPayload.java index f6449eab..d0b85a71 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestReviewCommentPayload.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/event/RepositoryPullRequestReviewCommentPayload.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/event/SenderAware.java b/src/main/java/io/pivotal/cla/egit/github/core/event/SenderAware.java index 6bfd0b1a..dc1e857b 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/event/SenderAware.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/event/SenderAware.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/service/ContextCommitService.java b/src/main/java/io/pivotal/cla/egit/github/core/service/ContextCommitService.java index 9713f4c0..5046b287 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/service/ContextCommitService.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/service/ContextCommitService.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/egit/github/core/service/EmailService.java b/src/main/java/io/pivotal/cla/egit/github/core/service/EmailService.java index d9abd181..7f1aa5d5 100644 --- a/src/main/java/io/pivotal/cla/egit/github/core/service/EmailService.java +++ b/src/main/java/io/pivotal/cla/egit/github/core/service/EmailService.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/AboutController.java b/src/main/java/io/pivotal/cla/mvc/AboutController.java index f6dc10ef..ceae314b 100644 --- a/src/main/java/io/pivotal/cla/mvc/AboutController.java +++ b/src/main/java/io/pivotal/cla/mvc/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/src/main/java/io/pivotal/cla/mvc/CclaController.java b/src/main/java/io/pivotal/cla/mvc/CclaController.java index 55bf2c70..fd3922f2 100644 --- a/src/main/java/io/pivotal/cla/mvc/CclaController.java +++ b/src/main/java/io/pivotal/cla/mvc/CclaController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/ClaController.java b/src/main/java/io/pivotal/cla/mvc/ClaController.java index 4611ac18..7f4042a7 100644 --- a/src/main/java/io/pivotal/cla/mvc/ClaController.java +++ b/src/main/java/io/pivotal/cla/mvc/ClaController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/ClaRequest.java b/src/main/java/io/pivotal/cla/mvc/ClaRequest.java index 482b2142..b661c059 100644 --- a/src/main/java/io/pivotal/cla/mvc/ClaRequest.java +++ b/src/main/java/io/pivotal/cla/mvc/ClaRequest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/FaqController.java b/src/main/java/io/pivotal/cla/mvc/FaqController.java index c96eeefe..1ed6d9cf 100644 --- a/src/main/java/io/pivotal/cla/mvc/FaqController.java +++ b/src/main/java/io/pivotal/cla/mvc/FaqController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/HomeController.java b/src/main/java/io/pivotal/cla/mvc/HomeController.java index f7e76e20..f69ab9e1 100644 --- a/src/main/java/io/pivotal/cla/mvc/HomeController.java +++ b/src/main/java/io/pivotal/cla/mvc/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/src/main/java/io/pivotal/cla/mvc/IclaController.java b/src/main/java/io/pivotal/cla/mvc/IclaController.java index 14446109..724f3b40 100644 --- a/src/main/java/io/pivotal/cla/mvc/IclaController.java +++ b/src/main/java/io/pivotal/cla/mvc/IclaController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/ResourceNotFoundException.java b/src/main/java/io/pivotal/cla/mvc/ResourceNotFoundException.java index 64397054..0650a908 100644 --- a/src/main/java/io/pivotal/cla/mvc/ResourceNotFoundException.java +++ b/src/main/java/io/pivotal/cla/mvc/ResourceNotFoundException.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/SignClaForm.java b/src/main/java/io/pivotal/cla/mvc/SignClaForm.java index 3dac0bcd..e8902500 100644 --- a/src/main/java/io/pivotal/cla/mvc/SignClaForm.java +++ b/src/main/java/io/pivotal/cla/mvc/SignClaForm.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/SignCorporateClaForm.java b/src/main/java/io/pivotal/cla/mvc/SignCorporateClaForm.java index e6a9e15d..5f2df27f 100644 --- a/src/main/java/io/pivotal/cla/mvc/SignCorporateClaForm.java +++ b/src/main/java/io/pivotal/cla/mvc/SignCorporateClaForm.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/AdminClaController.java b/src/main/java/io/pivotal/cla/mvc/admin/AdminClaController.java index b2929705..f8b38f0e 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/AdminClaController.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/AdminClaController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/AdminController.java b/src/main/java/io/pivotal/cla/mvc/admin/AdminController.java index f67738a3..0dbed4ef 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/AdminController.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/AdminController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/AdminCrudClaController.java b/src/main/java/io/pivotal/cla/mvc/admin/AdminCrudClaController.java index cf389f69..6a1d18dd 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/AdminCrudClaController.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/AdminCrudClaController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/AdminHelpController.java b/src/main/java/io/pivotal/cla/mvc/admin/AdminHelpController.java index b4a34c95..1f539ca0 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/AdminHelpController.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/AdminHelpController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/AdminLinkClaController.java b/src/main/java/io/pivotal/cla/mvc/admin/AdminLinkClaController.java index da0bd4e9..eefd6a5c 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/AdminLinkClaController.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/AdminLinkClaController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/ClaForm.java b/src/main/java/io/pivotal/cla/mvc/admin/ClaForm.java index e7df1003..f29fb5a9 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/ClaForm.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/ClaForm.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/admin/LinkClaForm.java b/src/main/java/io/pivotal/cla/mvc/admin/LinkClaForm.java index d51e23b2..596478b3 100644 --- a/src/main/java/io/pivotal/cla/mvc/admin/LinkClaForm.java +++ b/src/main/java/io/pivotal/cla/mvc/admin/LinkClaForm.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/github/GitHubHooksController.java b/src/main/java/io/pivotal/cla/mvc/github/GitHubHooksController.java index c9242421..3f51ff22 100644 --- a/src/main/java/io/pivotal/cla/mvc/github/GitHubHooksController.java +++ b/src/main/java/io/pivotal/cla/mvc/github/GitHubHooksController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/security/OAuthController.java b/src/main/java/io/pivotal/cla/mvc/security/OAuthController.java index 7ed0167a..2e4f3218 100644 --- a/src/main/java/io/pivotal/cla/mvc/security/OAuthController.java +++ b/src/main/java/io/pivotal/cla/mvc/security/OAuthController.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/security/UserControllerAdvice.java b/src/main/java/io/pivotal/cla/mvc/security/UserControllerAdvice.java index 62dacd41..b5761bf9 100644 --- a/src/main/java/io/pivotal/cla/mvc/security/UserControllerAdvice.java +++ b/src/main/java/io/pivotal/cla/mvc/security/UserControllerAdvice.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttr.java b/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttr.java index ef992351..c9a175d4 100644 --- a/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttr.java +++ b/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttr.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolver.java b/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolver.java index 57d54436..8911676a 100644 --- a/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolver.java +++ b/src/main/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolver.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/mvc/util/UrlBuilder.java b/src/main/java/io/pivotal/cla/mvc/util/UrlBuilder.java index ce8bd75a..75288915 100644 --- a/src/main/java/io/pivotal/cla/mvc/util/UrlBuilder.java +++ b/src/main/java/io/pivotal/cla/mvc/util/UrlBuilder.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/security/GitHubAuthenticationEntryPoint.java b/src/main/java/io/pivotal/cla/security/GitHubAuthenticationEntryPoint.java index c5f58999..0134f76f 100644 --- a/src/main/java/io/pivotal/cla/security/GitHubAuthenticationEntryPoint.java +++ b/src/main/java/io/pivotal/cla/security/GitHubAuthenticationEntryPoint.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/security/GitHubSignature.java b/src/main/java/io/pivotal/cla/security/GitHubSignature.java index 1017180e..f9d9b606 100644 --- a/src/main/java/io/pivotal/cla/security/GitHubSignature.java +++ b/src/main/java/io/pivotal/cla/security/GitHubSignature.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/security/Login.java b/src/main/java/io/pivotal/cla/security/Login.java index 6bb50c24..aeb87d1f 100644 --- a/src/main/java/io/pivotal/cla/security/Login.java +++ b/src/main/java/io/pivotal/cla/security/Login.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/AccessTokenRequest.java b/src/main/java/io/pivotal/cla/service/github/AccessTokenRequest.java index 7c192072..c5d59806 100644 --- a/src/main/java/io/pivotal/cla/service/github/AccessTokenRequest.java +++ b/src/main/java/io/pivotal/cla/service/github/AccessTokenRequest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/ContributingUrlsResponse.java b/src/main/java/io/pivotal/cla/service/github/ContributingUrlsResponse.java index 128f287d..9fbe2052 100644 --- a/src/main/java/io/pivotal/cla/service/github/ContributingUrlsResponse.java +++ b/src/main/java/io/pivotal/cla/service/github/ContributingUrlsResponse.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/CreatePullRequestHookRequest.java b/src/main/java/io/pivotal/cla/service/github/CreatePullRequestHookRequest.java index 35a9d685..b13b3d55 100644 --- a/src/main/java/io/pivotal/cla/service/github/CreatePullRequestHookRequest.java +++ b/src/main/java/io/pivotal/cla/service/github/CreatePullRequestHookRequest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/CurrentUserRequest.java b/src/main/java/io/pivotal/cla/service/github/CurrentUserRequest.java index cd2097da..47df8a7c 100644 --- a/src/main/java/io/pivotal/cla/service/github/CurrentUserRequest.java +++ b/src/main/java/io/pivotal/cla/service/github/CurrentUserRequest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/GitHubApi.java b/src/main/java/io/pivotal/cla/service/github/GitHubApi.java index 61b12e15..00a489dc 100644 --- a/src/main/java/io/pivotal/cla/service/github/GitHubApi.java +++ b/src/main/java/io/pivotal/cla/service/github/GitHubApi.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/MylynGitHubApi.java b/src/main/java/io/pivotal/cla/service/github/MylynGitHubApi.java index 47f20c08..0b9733cc 100644 --- a/src/main/java/io/pivotal/cla/service/github/MylynGitHubApi.java +++ b/src/main/java/io/pivotal/cla/service/github/MylynGitHubApi.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/OAuthAccessTokenParams.java b/src/main/java/io/pivotal/cla/service/github/OAuthAccessTokenParams.java index 21022fb8..7b3b5861 100644 --- a/src/main/java/io/pivotal/cla/service/github/OAuthAccessTokenParams.java +++ b/src/main/java/io/pivotal/cla/service/github/OAuthAccessTokenParams.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/io/pivotal/cla/service/github/PullRequestStatus.java b/src/main/java/io/pivotal/cla/service/github/PullRequestStatus.java index ba7c474b..49cf7d33 100644 --- a/src/main/java/io/pivotal/cla/service/github/PullRequestStatus.java +++ b/src/main/java/io/pivotal/cla/service/github/PullRequestStatus.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/application-dev.properties b/src/main/resources/application-dev.properties index 1e9e2905..5ed3b206 100644 --- a/src/main/resources/application-dev.properties +++ b/src/main/resources/application-dev.properties @@ -5,7 +5,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/css/components.css b/src/main/resources/static/assets/css/components.css index 434adc36..ea830206 100644 --- a/src/main/resources/static/assets/css/components.css +++ b/src/main/resources/static/assets/css/components.css @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/css/theme.css b/src/main/resources/static/assets/css/theme.css index 600d3a1e..6168be06 100644 --- a/src/main/resources/static/assets/css/theme.css +++ b/src/main/resources/static/assets/css/theme.css @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/layouts/main.css b/src/main/resources/static/assets/layouts/main.css index 717a7da4..d88b2c67 100644 --- a/src/main/resources/static/assets/layouts/main.css +++ b/src/main/resources/static/assets/layouts/main.css @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/layouts/main.js b/src/main/resources/static/assets/layouts/main.js index eeaa99c2..56f2c468 100644 --- a/src/main/resources/static/assets/layouts/main.js +++ b/src/main/resources/static/assets/layouts/main.js @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/pages/admin/cla/link.css b/src/main/resources/static/assets/pages/admin/cla/link.css index 481b5766..4e460ef8 100644 --- a/src/main/resources/static/assets/pages/admin/cla/link.css +++ b/src/main/resources/static/assets/pages/admin/cla/link.css @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/pages/admin/cla/link.js b/src/main/resources/static/assets/pages/admin/cla/link.js index 1b26895f..9705eb62 100644 --- a/src/main/resources/static/assets/pages/admin/cla/link.js +++ b/src/main/resources/static/assets/pages/admin/cla/link.js @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/pages/cla/ccla/sign.js b/src/main/resources/static/assets/pages/cla/ccla/sign.js index 27d6befe..0004e42c 100644 --- a/src/main/resources/static/assets/pages/cla/ccla/sign.js +++ b/src/main/resources/static/assets/pages/cla/ccla/sign.js @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/resources/static/assets/pages/cla/icla/sign.js b/src/main/resources/static/assets/pages/cla/icla/sign.js index 8ddca981..b14e42e1 100644 --- a/src/main/resources/static/assets/pages/cla/icla/sign.js +++ b/src/main/resources/static/assets/pages/cla/icla/sign.js @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/MocksConfig.java b/src/test/java/io/pivotal/cla/MocksConfig.java index 3a2487cf..0fbcb4a2 100644 --- a/src/test/java/io/pivotal/cla/MocksConfig.java +++ b/src/test/java/io/pivotal/cla/MocksConfig.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/config/ClaOAuthConfigTests.java b/src/test/java/io/pivotal/cla/config/ClaOAuthConfigTests.java index a812138d..a301d50e 100644 --- a/src/test/java/io/pivotal/cla/config/ClaOAuthConfigTests.java +++ b/src/test/java/io/pivotal/cla/config/ClaOAuthConfigTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/data/DataUtils.java b/src/test/java/io/pivotal/cla/data/DataUtils.java index 27fd90c5..51516ccd 100644 --- a/src/test/java/io/pivotal/cla/data/DataUtils.java +++ b/src/test/java/io/pivotal/cla/data/DataUtils.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/data/repository/CorporateSignatureRepositoryTests.java b/src/test/java/io/pivotal/cla/data/repository/CorporateSignatureRepositoryTests.java index d82ec334..830bd684 100644 --- a/src/test/java/io/pivotal/cla/data/repository/CorporateSignatureRepositoryTests.java +++ b/src/test/java/io/pivotal/cla/data/repository/CorporateSignatureRepositoryTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/data/repository/DefaultMethodMock.java b/src/test/java/io/pivotal/cla/data/repository/DefaultMethodMock.java index 2cbed27f..93be2c11 100644 --- a/src/test/java/io/pivotal/cla/data/repository/DefaultMethodMock.java +++ b/src/test/java/io/pivotal/cla/data/repository/DefaultMethodMock.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/data/repository/IndividualSignatureRepositoryTests.java b/src/test/java/io/pivotal/cla/data/repository/IndividualSignatureRepositoryTests.java index 2a04a968..caf38818 100644 --- a/src/test/java/io/pivotal/cla/data/repository/IndividualSignatureRepositoryTests.java +++ b/src/test/java/io/pivotal/cla/data/repository/IndividualSignatureRepositoryTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/junit/JpaTests.java b/src/test/java/io/pivotal/cla/junit/JpaTests.java index 845902bc..4a4af588 100644 --- a/src/test/java/io/pivotal/cla/junit/JpaTests.java +++ b/src/test/java/io/pivotal/cla/junit/JpaTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/mvc/github/GitHubHooksControllerTests.java b/src/test/java/io/pivotal/cla/mvc/github/GitHubHooksControllerTests.java index 3f7aeb43..7966192e 100644 --- a/src/test/java/io/pivotal/cla/mvc/github/GitHubHooksControllerTests.java +++ b/src/test/java/io/pivotal/cla/mvc/github/GitHubHooksControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolverTests.java b/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolverTests.java index 37280fe9..08cccdc4 100644 --- a/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolverTests.java +++ b/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrResolverTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrTests.java b/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrTests.java index 80cf77af..0c2380dc 100644 --- a/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrTests.java +++ b/src/test/java/io/pivotal/cla/mvc/support/ImportedSignaturesSessionAttrTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/GitHubSignatureTests.java b/src/test/java/io/pivotal/cla/security/GitHubSignatureTests.java index c1f836e3..bde1b2c2 100644 --- a/src/test/java/io/pivotal/cla/security/GitHubSignatureTests.java +++ b/src/test/java/io/pivotal/cla/security/GitHubSignatureTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/WithAdminUser.java b/src/test/java/io/pivotal/cla/security/WithAdminUser.java index c0d6537d..64ad104e 100644 --- a/src/test/java/io/pivotal/cla/security/WithAdminUser.java +++ b/src/test/java/io/pivotal/cla/security/WithAdminUser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/WithAdminUserFactory.java b/src/test/java/io/pivotal/cla/security/WithAdminUserFactory.java index 4c70409c..d882d0ed 100644 --- a/src/test/java/io/pivotal/cla/security/WithAdminUserFactory.java +++ b/src/test/java/io/pivotal/cla/security/WithAdminUserFactory.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/WithClaAuthorUser.java b/src/test/java/io/pivotal/cla/security/WithClaAuthorUser.java index 0709081a..daa30cef 100644 --- a/src/test/java/io/pivotal/cla/security/WithClaAuthorUser.java +++ b/src/test/java/io/pivotal/cla/security/WithClaAuthorUser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/WithClaAuthorUserFactory.java b/src/test/java/io/pivotal/cla/security/WithClaAuthorUserFactory.java index 013fd213..be2960b8 100644 --- a/src/test/java/io/pivotal/cla/security/WithClaAuthorUserFactory.java +++ b/src/test/java/io/pivotal/cla/security/WithClaAuthorUserFactory.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/WithSigningUser.java b/src/test/java/io/pivotal/cla/security/WithSigningUser.java index 64269f87..23a86988 100644 --- a/src/test/java/io/pivotal/cla/security/WithSigningUser.java +++ b/src/test/java/io/pivotal/cla/security/WithSigningUser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/security/WithSigningUserFactory.java b/src/test/java/io/pivotal/cla/security/WithSigningUserFactory.java index e43ca096..acdfc039 100644 --- a/src/test/java/io/pivotal/cla/security/WithSigningUserFactory.java +++ b/src/test/java/io/pivotal/cla/security/WithSigningUserFactory.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/service/github/MylynGitHubApiITests.java b/src/test/java/io/pivotal/cla/service/github/MylynGitHubApiITests.java index 53917eae..76646e99 100644 --- a/src/test/java/io/pivotal/cla/service/github/MylynGitHubApiITests.java +++ b/src/test/java/io/pivotal/cla/service/github/MylynGitHubApiITests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolver.java b/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolver.java index 4e9280e5..e9a26173 100644 --- a/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolver.java +++ b/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolver.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolverTests.java b/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolverTests.java index 6f094678..18fcdbc2 100644 --- a/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolverTests.java +++ b/src/test/java/io/pivotal/cla/test/context/SystemActiveProfilesResolverTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/test/context/SystemDataActiveProfiles.java b/src/test/java/io/pivotal/cla/test/context/SystemDataActiveProfiles.java index 4ff49c12..eb7cdcba 100644 --- a/src/test/java/io/pivotal/cla/test/context/SystemDataActiveProfiles.java +++ b/src/test/java/io/pivotal/cla/test/context/SystemDataActiveProfiles.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/AboutControllerTests.java b/src/test/java/io/pivotal/cla/webdriver/AboutControllerTests.java index 5b23dafa..fd5f4e1d 100644 --- a/src/test/java/io/pivotal/cla/webdriver/AboutControllerTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/AboutControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/AccessDeniedTests.java b/src/test/java/io/pivotal/cla/webdriver/AccessDeniedTests.java index 60749321..d661122b 100644 --- a/src/test/java/io/pivotal/cla/webdriver/AccessDeniedTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/AccessDeniedTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/ActuatorSecurityTests.java b/src/test/java/io/pivotal/cla/webdriver/ActuatorSecurityTests.java index 59908ddd..7164ea76 100644 --- a/src/test/java/io/pivotal/cla/webdriver/ActuatorSecurityTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/ActuatorSecurityTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/AuthenticationTests.java b/src/test/java/io/pivotal/cla/webdriver/AuthenticationTests.java index 7b730e65..b5b4aac1 100644 --- a/src/test/java/io/pivotal/cla/webdriver/AuthenticationTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/AuthenticationTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/BaseWebDriverTests.java b/src/test/java/io/pivotal/cla/webdriver/BaseWebDriverTests.java index 1ec11a6c..afa9c535 100644 --- a/src/test/java/io/pivotal/cla/webdriver/BaseWebDriverTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/BaseWebDriverTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/CclaControllerTests.java b/src/test/java/io/pivotal/cla/webdriver/CclaControllerTests.java index 4219e7a1..ed281ca7 100644 --- a/src/test/java/io/pivotal/cla/webdriver/CclaControllerTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/CclaControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/ClaControllerTests.java b/src/test/java/io/pivotal/cla/webdriver/ClaControllerTests.java index a86ccc9e..7dcec4a9 100644 --- a/src/test/java/io/pivotal/cla/webdriver/ClaControllerTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/ClaControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/FaqControllerTests.java b/src/test/java/io/pivotal/cla/webdriver/FaqControllerTests.java index c8e8628d..bf177336 100644 --- a/src/test/java/io/pivotal/cla/webdriver/FaqControllerTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/FaqControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/HomeControllerTests.java b/src/test/java/io/pivotal/cla/webdriver/HomeControllerTests.java index 9d300859..04046322 100644 --- a/src/test/java/io/pivotal/cla/webdriver/HomeControllerTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/HomeControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/IclaControllerTests.java b/src/test/java/io/pivotal/cla/webdriver/IclaControllerTests.java index 043cc2ba..ae8a9bc6 100644 --- a/src/test/java/io/pivotal/cla/webdriver/IclaControllerTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/IclaControllerTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/RequiresChannelTests.java b/src/test/java/io/pivotal/cla/webdriver/RequiresChannelTests.java index 9770b637..9ec3d45d 100644 --- a/src/test/java/io/pivotal/cla/webdriver/RequiresChannelTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/RequiresChannelTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/WebDriverContext.java b/src/test/java/io/pivotal/cla/webdriver/WebDriverContext.java index 2660fc9d..170f1068 100644 --- a/src/test/java/io/pivotal/cla/webdriver/WebDriverContext.java +++ b/src/test/java/io/pivotal/cla/webdriver/WebDriverContext.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/admin/AdminCreateClaTests.java b/src/test/java/io/pivotal/cla/webdriver/admin/AdminCreateClaTests.java index 03137fca..6ff51cc6 100644 --- a/src/test/java/io/pivotal/cla/webdriver/admin/AdminCreateClaTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/admin/AdminCreateClaTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/admin/AdminHelpTests.java b/src/test/java/io/pivotal/cla/webdriver/admin/AdminHelpTests.java index 24a1c7f8..e795993d 100644 --- a/src/test/java/io/pivotal/cla/webdriver/admin/AdminHelpTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/admin/AdminHelpTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/admin/AdminHomeTests.java b/src/test/java/io/pivotal/cla/webdriver/admin/AdminHomeTests.java index 9a7d6d26..006cc5ec 100644 --- a/src/test/java/io/pivotal/cla/webdriver/admin/AdminHomeTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/admin/AdminHomeTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/admin/AdminLinkClaTests.java b/src/test/java/io/pivotal/cla/webdriver/admin/AdminLinkClaTests.java index 3ad2cf6b..e67329ed 100644 --- a/src/test/java/io/pivotal/cla/webdriver/admin/AdminLinkClaTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/admin/AdminLinkClaTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/admin/AdminListClaTests.java b/src/test/java/io/pivotal/cla/webdriver/admin/AdminListClaTests.java index f0c604e8..6979b72b 100644 --- a/src/test/java/io/pivotal/cla/webdriver/admin/AdminListClaTests.java +++ b/src/test/java/io/pivotal/cla/webdriver/admin/AdminListClaTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/AboutPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/AboutPage.java index a03604bf..b16578b5 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/AboutPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/AboutPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/BasePage.java b/src/test/java/io/pivotal/cla/webdriver/pages/BasePage.java index 1f078b45..8344b7c7 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/BasePage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/BasePage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/ErrorPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/ErrorPage.java index 7de031f3..4ccd864d 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/ErrorPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/ErrorPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/FaqPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/FaqPage.java index 24560713..e15b99cc 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/FaqPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/FaqPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/HomePage.java b/src/test/java/io/pivotal/cla/webdriver/pages/HomePage.java index a493597d..1bdd75d2 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/HomePage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/HomePage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/ProfilePage.java b/src/test/java/io/pivotal/cla/webdriver/pages/ProfilePage.java index 768d2a2e..f3828779 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/ProfilePage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/ProfilePage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/SignCclaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/SignCclaPage.java index 1a461539..b7afc5fe 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/SignCclaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/SignCclaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/SignClaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/SignClaPage.java index 6fa0f4ce..f914d54a 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/SignClaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/SignClaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/SignIclaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/SignIclaPage.java index 6224a21a..5ef7ba0c 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/SignIclaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/SignIclaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/SignedPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/SignedPage.java index c6dd1c05..a350ec8e 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/SignedPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/SignedPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/ViewCclaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/ViewCclaPage.java index 159384f4..7304bc2b 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/ViewCclaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/ViewCclaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/ViewIclaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/ViewIclaPage.java index 950a9b84..65d4d776 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/ViewIclaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/ViewIclaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminClaFormPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminClaFormPage.java index 79b2fefc..dc4eb507 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminClaFormPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminClaFormPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminCreateClaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminCreateClaPage.java index b5778b40..12f6001d 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminCreateClaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminCreateClaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminEditClaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminEditClaPage.java index 02efbb40..7d1500c1 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminEditClaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminEditClaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpMigratePage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpMigratePage.java index c01033a3..7be0612c 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpMigratePage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpMigratePage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpPage.java index 1fc257b7..73c41d98 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminHelpPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminLinkClaPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminLinkClaPage.java index 97cd7525..a78f5d08 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminLinkClaPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminLinkClaPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminListClasPage.java b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminListClasPage.java index 498cf61b..d31df24b 100644 --- a/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminListClasPage.java +++ b/src/test/java/io/pivotal/cla/webdriver/pages/admin/AdminListClasPage.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServer.java b/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServer.java index 77da0867..2600e9dc 100644 --- a/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServer.java +++ b/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServerITest.java b/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServerITest.java index 8311d2f8..88c8ac7d 100644 --- a/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServerITest.java +++ b/src/test/java/okhttp3/mockwebserver/EnqueueResourcesMockWebServerITest.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/okhttp3/mockwebserver/MockResponseParser.java b/src/test/java/okhttp3/mockwebserver/MockResponseParser.java index a128ce32..8abcc830 100644 --- a/src/test/java/okhttp3/mockwebserver/MockResponseParser.java +++ b/src/test/java/okhttp3/mockwebserver/MockResponseParser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/okhttp3/mockwebserver/MockResponseParserTest.java b/src/test/java/okhttp3/mockwebserver/MockResponseParserTest.java index bd768e6f..ef7c7c61 100644 --- a/src/test/java/okhttp3/mockwebserver/MockResponseParserTest.java +++ b/src/test/java/okhttp3/mockwebserver/MockResponseParserTest.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,