Skip to content

Commit d9cf649

Browse files
author
Doug Black
committed
s/http/https/g
1 parent 36a9d8a commit d9cf649

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+91
-91
lines changed

src/main/java/com/twilio/sdk/TwilioRestClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -660,8 +660,8 @@ public void setEndpoint(String endpoint) {
660660
*/
661661
/**
662662
* Get a list of Account objects. For more info: {@link <a
663-
* href="http://www.twilio.com/docs/api/rest/account"
664-
* >http://www.twilio.com/docs/api/rest/account</a>}
663+
* href="https://www.twilio.com/docs/api/rest/account"
664+
* >https://www.twilio.com/docs/api/rest/account</a>}
665665
*
666666
* @param params
667667
* Filter the list with the given params. See the Twilio docs for
@@ -676,8 +676,8 @@ public AccountList getAccounts(Map<String, String> params) {
676676

677677
/**
678678
* Get all accounts. For more info: {@link <a
679-
* href="http://www.twilio.com/docs/api/rest/account"
680-
* >http://www.twilio.com/docs/api/rest/account</a>}
679+
* href="https://www.twilio.com/docs/api/rest/account"
680+
* >https://www.twilio.com/docs/api/rest/account</a>}
681681
*
682682
* @return the list of accounts.
683683
*/

src/main/java/com/twilio/sdk/TwilioRestException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
/**
8-
* See: <a href="http://www.twilio.com/docs/errors/">http://www.twilio.com/docs/errors/</a> for more info
8+
* See: <a href="https://www.twilio.com/docs/errors/">https://www.twilio.com/docs/errors/</a> for more info
99
* @author FrankStratton
1010
*
1111
*/

src/main/java/com/twilio/sdk/resource/factory/AccountFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* A factory for creating Account objects.
1313
*
14-
* For more information see <a href="http://www.twilio.com/docs/api/rest/subaccounts">http://www.twilio.com/docs/api/rest/subaccounts</a>
14+
* For more information see <a href="https://www.twilio.com/docs/api/rest/subaccounts">https://www.twilio.com/docs/api/rest/subaccounts</a>
1515
*/
1616
public interface AccountFactory {
1717

src/main/java/com/twilio/sdk/resource/factory/ApplicationFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* A factory for creating Application objects.
1313
*
14-
* For more information see <a href=" http://www.twilio.com/docs/api/rest/applications#list-post"> http://www.twilio.com/docs/api/rest/applications#list-post</a>
14+
* For more information see <a href=" https://www.twilio.com/docs/api/rest/applications#list-post"> https://www.twilio.com/docs/api/rest/applications#list-post</a>
1515
*
1616
*/
1717
public interface ApplicationFactory {

src/main/java/com/twilio/sdk/resource/instance/Account.java

Lines changed: 39 additions & 39 deletions
Large diffs are not rendered by default.

src/main/java/com/twilio/sdk/resource/instance/Application.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* The Class Application.
1616
*
1717
* For more information see <a
18-
* href="http://www.twilio.com/docs/api/rest/applications">http://www.twilio.com/docs/api/rest/applications</a>
18+
* href="https://www.twilio.com/docs/api/rest/applications">https://www.twilio.com/docs/api/rest/applications</a>
1919
*/
2020
public class Application extends InstanceResource {
2121

src/main/java/com/twilio/sdk/resource/instance/AuthorizedConnectApp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
*
2020
*
2121
* For more information see <a
22-
* href="http://www.twilio.com/docs/api/rest/authorized-connect-apps"
23-
* >http://www.twilio.com/docs/api/rest/authorized-connect-apps</a>
22+
* href="https://www.twilio.com/docs/api/rest/authorized-connect-apps"
23+
* >https://www.twilio.com/docs/api/rest/authorized-connect-apps</a>
2424
*/
2525
public class AuthorizedConnectApp extends InstanceResource {
2626

src/main/java/com/twilio/sdk/resource/instance/AvailablePhoneNumber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* The Class AvailablePhoneNumber.
1111
*
12-
* For more information see <a href="http://www.twilio.com/docs/api/rest/available-phone-numbers">http://www.twilio.com/docs/api/rest/available-phone-numbers</a>
12+
* For more information see <a href="https://www.twilio.com/docs/api/rest/available-phone-numbers">https://www.twilio.com/docs/api/rest/available-phone-numbers</a>
1313
*/
1414
public class AvailablePhoneNumber extends InstanceResource {
1515
// private static final String SID_PROPERTY = "sid";

src/main/java/com/twilio/sdk/resource/instance/Call.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* The Class Call.
1717
*
18-
* For more information see <a href="http://www.twilio.com/docs/api/rest/call">http://www.twilio.com/docs/api/rest/call</a>
18+
* For more information see <a href="https://www.twilio.com/docs/api/rest/call">https://www.twilio.com/docs/api/rest/call</a>
1919
*/
2020
public class Call extends InstanceResource {
2121

src/main/java/com/twilio/sdk/resource/instance/Conference.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* The Class Conference.
1515
*
16-
* For more information see <a href="http://www.twilio.com/docs/api/rest/conference">http://www.twilio.com/docs/api/rest/conference</a>
16+
* For more information see <a href="https://www.twilio.com/docs/api/rest/conference">https://www.twilio.com/docs/api/rest/conference</a>
1717
*/
1818
public class Conference extends InstanceResource {
1919

0 commit comments

Comments
 (0)