Merge "Ims: Add support for Adhoc Conference calls"

This commit is contained in:
Treehugger Robot
2020-01-22 21:16:19 +00:00
committed by Gerrit Code Review
17 changed files with 817 additions and 19 deletions

View File

@@ -497,8 +497,17 @@ public abstract class Connection extends Conferenceable {
@TestApi
public static final int PROPERTY_REMOTELY_HOSTED = 1 << 11;
/**
* Set by the framework to indicate that it is an adhoc conference call.
* <p>
* This is used for Outgoing and incoming conference calls.
*
*/
public static final int PROPERTY_IS_ADHOC_CONFERENCE = 1 << 12;
//**********************************************************************************************
// Next PROPERTY value: 1<<12
// Next PROPERTY value: 1<<13
//**********************************************************************************************
/**
@@ -1018,6 +1027,10 @@ public abstract class Connection extends Conferenceable {
builder.append(isLong ? " PROPERTY_REMOTELY_HOSTED" : " remote_hst");
}
if ((properties & PROPERTY_IS_ADHOC_CONFERENCE) == PROPERTY_IS_ADHOC_CONFERENCE) {
builder.append(isLong ? " PROPERTY_IS_ADHOC_CONFERENCE" : " adhoc_conf");
}
builder.append("]");
return builder.toString();
}