Skip to content

Commit 2f4b6c2

Browse files
committed
Merge branch 'next-gen' of https://github.com/twilio/java-private into next-gen-date-formats
2 parents db4b39d + 32666dc commit 2f4b6c2

File tree

1,387 files changed

+219
-438318
lines changed

Some content is hidden

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

1,387 files changed

+219
-438318
lines changed

CHANGES

Lines changed: 0 additions & 436 deletions
This file was deleted.

CHANGES.md

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
twilio-java changelog
2+
=====================
3+
4+
[2016-09-07] Version 7.0.0
5+
--------------------------
6+
**New Major Version**
7+
8+
The newest version of the `twilio-java` helper library!
9+
10+
This version brings a host of changes to update and modernize the `twilio-java` helper library. It is auto-generated to produce a more consistent and correct product.
11+
12+
- [Migration Guide](https://www.twilio.com/docs/libraries/java/migration-guide)
13+
- [Full API Documentation](https://twilio.github.io/twilio-java/)
14+
- [General Documentation](https://www.twilio.com/docs/libraries/java)
15+
16+
17+
[2016-01-26] Version 5.9.0
18+
--------------------------
19+
- Add support for WorkerReservations in TaskRouter
20+
- Add support for filterFriendlyName in TaskRouter WorkflowRules
21+
- Fix TaskRouter paging
22+
23+
24+
[2015-12-16] Version 5.8.0
25+
--------------------------
26+
- Add support for IP Messaging
27+
28+
29+
[2015-12-14] Version 5.7.1
30+
--------------------------
31+
- Add new getUsageRecords to support query by intervals
32+
- Fix for ListResource's & NextGenListResource's ListIterator.next()
33+
34+
35+
[2015-12-08] Version 5.7.0
36+
--------------------------
37+
- Change NBF to be optional parameter in AccessToken
38+
39+
40+
[2015-12-03] Version 5.6.0
41+
--------------------------
42+
- Add access tokens
43+
44+
45+
[2015-11-25] Version 5.5.1
46+
--------------------------
47+
- Exposed Recording's PriceUnit field
48+
49+
50+
[2015-11-18] Version 5.5.0
51+
--------------------------
52+
- Fix authentication using key and secret
53+
54+
55+
[2015-10-30] Version 5.4.0
56+
--------------------------
57+
- Add MessagingServiceSid
58+
59+
60+
[2015-10-28] Version 5.3.0
61+
--------------------------
62+
- Add Keys endpoint
63+
64+
65+
[2015-10-02] Version 5.2.1
66+
--------------------------
67+
- Normalized the Number type from spaces to underscore in Pricing Phone Number Country
68+
69+
70+
[2015-09-24] Version 5.2.0
71+
--------------------------
72+
- Add support for TaskRouter reservations
73+
- Add support for TaskRouter TwiML verbs
74+
75+
76+
[2015-09-21] Version 5.1.0
77+
--------------------------
78+
- Add support for messaging in Twilio Pricing API
79+
- Add support for Elastic SIP Trunking's API
80+
81+
82+
[2015-09-14] Version 5.0.0
83+
--------------------------
84+
- Remove deprecated total and numpages from ListResource and response parsers
85+
86+

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# Installing
44

5-
twilio-java uses Maven. At present the jars *are* available from a public [maven](http://mvnrepository.com/artifact/com.twilio.sdk/twilio-java-sdk) repository.
5+
twilio-java uses Maven. At present the jars *are* available from a public [maven](http://mvnrepository.com/artifact/com.twilio.sdk/twilio) repository.
66

77
Use the following dependency in your project:
88

99
<dependency>
1010
<groupId>com.twilio.sdk</groupId>
11-
<artifactId>twiliok</artifactId>
11+
<artifactId>twilio</artifactId>
1212
<version>7.X.X</version>
1313
<scope>compile</scope>
1414
</dependency>
@@ -28,7 +28,7 @@ String authToken = "XXXXXXXX"; // Your Auth Token from www.twilio.com/user/accou
2828

2929
Twilio.init(accountSid, authToken);
3030

31-
Message message = new MessageCreator(
31+
Message message = Message.create(
3232
ACCOUNT_SID,
3333
new PhoneNumber("+15558881234"),
3434
new PhoneNumber("+15559994321"),
@@ -45,7 +45,7 @@ String authToken = "XXXXXXXX"; // Your Auth Token from www.twilio.com/user/accou
4545

4646
Twilio.init(accountSid, authToken);
4747

48-
Call call = new CallCreator(
48+
Call call = Call.create(
4949
ACCOUNT_SID,
5050
new PhoneNumber("+15558881234"),
5151
new PhoneNumber("+15559994321"),
@@ -75,10 +75,6 @@ That will output XML that looks like this:
7575
</Response>
7676
```
7777

78-
### Release Candidate
79-
80-
This is a release candidate version of the Java Library. To submit feedback, open and issue on the Github repo.
81-
8278

8379
# Documentation
8480

docs/allclasses-frame.html

Lines changed: 0 additions & 593 deletions
This file was deleted.

docs/allclasses-noframe.html

Lines changed: 0 additions & 593 deletions
This file was deleted.

0 commit comments

Comments
 (0)