summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom/Connection.java
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-09-19 11:17:02 -0700
committerTyler Gunn <tgunn@google.com>2014-09-23 10:00:38 -0700
commit711d876fd110b33519afb5d05f5a740ade635787 (patch)
treec56d30925969aeaeb73326ea98a1f980e3ac518a /telecomm/java/android/telecom/Connection.java
parent55fa0207134d7a2470f060445938b2d63e180f4e (diff)
downloadframeworks_base-711d876fd110b33519afb5d05f5a740ade635787.zip
frameworks_base-711d876fd110b33519afb5d05f5a740ade635787.tar.gz
frameworks_base-711d876fd110b33519afb5d05f5a740ade635787.tar.bz2
@hide ConnectionService APIs.
Bug: 17569532 Change-Id: I68f7237191bd6d7a1a00ba7bb4fd2f8e3d669e8f
Diffstat (limited to 'telecomm/java/android/telecom/Connection.java')
-rw-r--r--telecomm/java/android/telecom/Connection.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/Connection.java b/telecomm/java/android/telecom/Connection.java
index 7979e44..13acc59 100644
--- a/telecomm/java/android/telecom/Connection.java
+++ b/telecomm/java/android/telecom/Connection.java
@@ -19,6 +19,7 @@ package android.telecom;
import com.android.internal.telecom.IVideoCallback;
import com.android.internal.telecom.IVideoProvider;
+import android.annotation.SystemApi;
import android.net.Uri;
import android.os.Handler;
import android.os.IBinder;
@@ -43,7 +44,9 @@ import java.util.concurrent.ConcurrentHashMap;
* Implementations are then responsible for updating the state of the {@code Connection}, and
* must call {@link #destroy()} to signal to the framework that the {@code Connection} is no
* longer used and associated resources may be recovered.
+ * @hide
*/
+@SystemApi
public abstract class Connection {
public static final int STATE_INITIALIZING = 0;
@@ -873,7 +876,7 @@ public abstract class Connection {
return mUnmodifiableConferenceableConnections;
}
- /*
+ /**
* @hide
*/
public final void setConnectionService(ConnectionService connectionService) {