Telephony multi-endpoint disconnect causes.

A few disconnect cause mappings were missing for the multi-endpoint
disconnect causes.  Adding them here.

Bug: 29236416
Change-Id: I669bd72290c0e823c54eb6062ebd658743882852
This commit is contained in:
Tyler Gunn
2016-06-09 07:58:25 -07:00
parent 7f4c846d0a
commit 2a3f997b02
2 changed files with 16 additions and 2 deletions

View File

@@ -275,6 +275,12 @@ public final class DisconnectCause implements Parcelable {
case CONNECTION_MANAGER_NOT_SUPPORTED:
code = "CONNECTION_MANAGER_NOT_SUPPORTED";
break;
case CALL_PULLED:
code = "CALL_PULLED";
break;
case ANSWERED_ELSEWHERE:
code = "ANSWERED_ELSEWHERE";
break;
default:
code = "invalid code: " + mDisconnectCode;
break;

View File

@@ -200,6 +200,12 @@ public class DisconnectCause {
*/
public static final int CALL_PULLED = 51;
/**
* The call was terminated because it was answered on another device.
* {@hide}
*/
public static final int ANSWERED_ELSEWHERE = 52;
//*********************************************************************************************
// When adding a disconnect type:
// 1) Please assign the new type the next id value below.
@@ -208,14 +214,14 @@ public class DisconnectCause {
// 4) Update toString() with the newly added disconnect type.
// 5) Update android.telecom.DisconnectCauseUtil with any mappings to a telecom.DisconnectCause.
//
// NextId: 50
// NextId: 53
//*********************************************************************************************
/** Smallest valid value for call disconnect codes. */
public static final int MINIMUM_VALID_VALUE = NOT_DISCONNECTED;
/** Largest valid value for call disconnect codes. */
public static final int MAXIMUM_VALID_VALUE = VIDEO_CALL_NOT_ALLOWED_WHILE_TTY_ENABLED;
public static final int MAXIMUM_VALID_VALUE = ANSWERED_ELSEWHERE;
/** Private constructor to avoid class instantiation. */
private DisconnectCause() {
@@ -327,6 +333,8 @@ public class DisconnectCause {
return "VIDEO_CALL_NOT_ALLOWED_WHILE_TTY_ENABLED";
case CALL_PULLED:
return "CALL_PULLED";
case ANSWERED_ELSEWHERE:
return "ANSWERED_ELSEWHERE";
default:
return "INVALID: " + cause;
}