summaryrefslogtreecommitdiff
path: root/telecomm/java/android/telecom/Connection.java
diff options
context:
space:
mode:
authorZhao Fan <zhaof@codeaurora.org>2020-12-01 15:09:39 +0800
committerZhao Fan <zhaof@codeaurora.org>2020-12-09 19:31:30 +0800
commitc5c90016df6f712f82b3a8709c783cc9ad16d0dd (patch)
tree8af6b7cfd501de5ccedfe60ca96a38ae25973329 /telecomm/java/android/telecom/Connection.java
parentb25a504db15f179a78721e6166754edc5d938fb9 (diff)
IMS: Add property PROPERTY_IS_PARTICIPANT_HOST
Add property PROPERTY_IS_PARTICIPANT_HOST to indicate that a Conference or Connection is participant host. Change-Id: I17991ba6ca08f22d45e23662e42e63341bd1f81e CRs-Fixed: 2812971
Diffstat (limited to 'telecomm/java/android/telecom/Connection.java')
-rwxr-xr-xtelecomm/java/android/telecom/Connection.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/Connection.java b/telecomm/java/android/telecom/Connection.java
index b20cad0e591c..e45a0033f778 100755
--- a/telecomm/java/android/telecom/Connection.java
+++ b/telecomm/java/android/telecom/Connection.java
@@ -539,9 +539,18 @@ public abstract class Connection extends Conferenceable {
*/
public static final int PROPERTY_IS_ADHOC_CONFERENCE = 1 << 12;
+ /**
+ * Set by the framework to indicate that a Connection is participant host, which
+ * means the conference participant's handle is the same as the conference host's handle.
+ * <p>
+ * This property is specific to IMS conference calls originating in Telephony.
+ * @hide
+ */
+ public static final int PROPERTY_IS_PARTICIPANT_HOST = 1 << 13;
+
//**********************************************************************************************
- // Next PROPERTY value: 1<<13
+ // Next PROPERTY value: 1<<14
//**********************************************************************************************
/**