Skip to content

Commit 1125b3a

Browse files
author
Manik Sachdeva
authored
Merge pull request #168 from opentok/dev
v4.3.1
2 parents 0072256 + 70f9262 commit 1125b3a

38 files changed

+42
-42
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'jacoco'
1212

1313
group = 'com.tokbox'
1414
archivesBaseName = 'opentok-server-sdk'
15-
version = '4.3.0'
15+
version = '4.3.1-alpha.1'
1616

1717
task javadocJar(type: Jar) {
1818
classifier = 'javadoc'

src/main/java/com/opentok/Archive.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
@@ -95,7 +95,7 @@ public enum OutputMode {
9595
@JsonProperty private int partnerId;
9696
@JsonProperty private String reason;
9797
@JsonProperty private String sessionId;
98-
@JsonProperty private int size = 0;
98+
@JsonProperty private long size = 0;
9999
@JsonProperty private Status status;
100100
@JsonProperty private String url;
101101
@JsonProperty private boolean hasVideo = true;
@@ -172,7 +172,7 @@ public String getSessionId() {
172172
/**
173173
* The size of the MP4 file. For archives that have not been generated, this value is set to 0.
174174
*/
175-
public int getSize() {
175+
public long getSize() {
176176
return size;
177177
}
178178

src/main/java/com/opentok/ArchiveLayout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/ArchiveList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/ArchiveMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/ArchiveProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/Broadcast.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/BroadcastLayout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/BroadcastProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

src/main/java/com/opentok/CreatedSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* OpenTok Java SDK
3-
* Copyright (C) 2018 TokBox, Inc.
3+
* Copyright (C) 2019 TokBox, Inc.
44
* http://www.tokbox.com
55
*
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.

0 commit comments

Comments
 (0)