Skip to content

Commit 8227589

Browse files
lenzlenz
authored andcommitted
bug #78: Support for ARI 3.0.0 / Asterisk 15
This still uses the old code generator. JAR version is now 0.4.5
1 parent 2f01f35 commit 8227589

File tree

789 files changed

+9355
-1717
lines changed

Some content is hidden

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

789 files changed

+9355
-1717
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Asterisk REST Interface (ARI) bindings for Java.
88
Description
99
-----------
1010

11-
ARI is an interface available on Asterisk 12/13 that lets you write applications
11+
ARI is an interface available on Asterisk 12/13/14/15 that lets you write applications
1212
that run externally and control call flow through REST calls while receiving
1313
events on a websocket.
1414

@@ -39,7 +39,7 @@ If you use Gradle (or any tool using Maven dependencies) you can simply declare
3939

4040

4141
dependencies {
42-
compile 'ch.loway.oss.ari4java:ari4java:0.4.4'
42+
compile 'ch.loway.oss.ari4java:ari4java:0.4.5'
4343
}
4444

4545
This will download the package and all required dependencies.
@@ -67,7 +67,7 @@ In order to run codegen (class ch.loway.oss.ari4java.codegen.run), you need the
6767
Testing and packaging
6868
---------------------
6969

70-
The easiest tway to build is simply using the Gradle script supplied.
70+
The easiest way to build is simply using the Gradle script supplied.
7171

7272
gradle clean build
7373

@@ -87,6 +87,7 @@ The project requires:
8787
Status
8888
------
8989

90+
* 17.12.19 - Added support for ARI 3.0.0 (#78)
9091
* 17.02.04 - Added support for ARI 2.0.0 (#62) and quicker deserialization (#63)
9192
* 16.11.30 - Fixes on Graham's AutoReconnect patch - #60 - rel 0.4.3
9293
* 16.10.21 - Fixing #55 and #57 - rel 0.4.2

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def env = System.getenv()
99

1010
project.ext {
1111
webapp_name = 'ari4java'
12-
app_version = '0.4.4'
12+
app_version = '0.4.5'
1313
build_number = env["BUILD_NUMBER"]
1414
version_class = 'ch/loway/oss/ari4java/BUILD.java'
1515
build_time = "" + new Date()

classes/ch/loway/oss/ari4java/AriVersion.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
import ch.loway.oss.ari4java.generated.ari_1_8_0.AriBuilder_impl_ari_1_8_0;
1212
import ch.loway.oss.ari4java.generated.ari_1_9_0.AriBuilder_impl_ari_1_9_0;
1313
import ch.loway.oss.ari4java.generated.ari_2_0_0.AriBuilder_impl_ari_2_0_0;
14+
import ch.loway.oss.ari4java.generated.ari_3_0_0.AriBuilder_impl_ari_3_0_0;
15+
1416
import ch.loway.oss.ari4java.tools.ARIException;
1517

1618
/**
@@ -30,6 +32,7 @@ public enum AriVersion {
3032
ARI_1_9_0 ( "1.9.0", new AriBuilder_impl_ari_1_9_0() ), /** Asterisk 13.7.0 */
3133
ARI_1_10_0 ( "1.10.0", new AriBuilder_impl_ari_1_10_0() ), /** Asterisk 14.0.0 */
3234
ARI_2_0_0 ( "2.0.0", new AriBuilder_impl_ari_2_0_0() ), /** Asterisk 14.2.1 */
35+
ARI_3_0_0 ( "3.0.0", new AriBuilder_impl_ari_3_0_0() ), /** Asterisk 14.2.1 */
3336

3437

3538
IM_FEELING_LUCKY ( "", null );

classes/ch/loway/oss/ari4java/generated/ActionApplications.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:09 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

classes/ch/loway/oss/ari4java/generated/ActionAsterisk.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:08 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

classes/ch/loway/oss/ari4java/generated/ActionBridges.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:08 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

classes/ch/loway/oss/ari4java/generated/ActionChannels.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:08 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

classes/ch/loway/oss/ari4java/generated/ActionDeviceStates.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:09 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

classes/ch/loway/oss/ari4java/generated/ActionEndpoints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:08 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

classes/ch/loway/oss/ari4java/generated/ActionEvents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ----------------------------------------------------
44
// THIS CLASS WAS GENERATED AUTOMATICALLY
55
// PLEASE DO NOT EDIT
6-
// Generated on: Sat Feb 04 15:23:09 CET 2017
6+
// Generated on: Tue Dec 19 09:55:48 CET 2017
77
// ----------------------------------------------------
88

99
import java.util.Date;

0 commit comments

Comments
 (0)