summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2014-04-01 14:23:09 -0700
committerSailesh Nepal <sail@google.com>2014-04-01 14:23:09 -0700
commitf6e9b27f93ef2d0b806e8b24d3082234ae222d33 (patch)
treeaf465b0fa767d6ceaf382ae5fa21671e29f909ab /telecomm
parent4da27ea8771220d26846e482bdb647f1987cc8cb (diff)
downloadframeworks_base-f6e9b27f93ef2d0b806e8b24d3082234ae222d33.zip
frameworks_base-f6e9b27f93ef2d0b806e8b24d3082234ae222d33.tar.gz
frameworks_base-f6e9b27f93ef2d0b806e8b24d3082234ae222d33.tar.bz2
Add CallCapabilities and CallNumberPresentation
Bug: 13643568 Change-Id: I453a1b0db0edf31b26be64b4dcbabec58a4f96f5
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecomm/CallCapabilities.java50
-rw-r--r--telecomm/java/android/telecomm/CallNumberPresentation.java32
2 files changed, 82 insertions, 0 deletions
diff --git a/telecomm/java/android/telecomm/CallCapabilities.java b/telecomm/java/android/telecomm/CallCapabilities.java
new file mode 100644
index 0000000..b2b33a3
--- /dev/null
+++ b/telecomm/java/android/telecomm/CallCapabilities.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2014, The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.telecomm;
+
+/** Defines actions a call currently supports. */
+public class CallCapabilities {
+ /** Call can currently be put on hold or unheld. */
+ public static final int HOLD = 0x00000001;
+
+ /** Call supports the hold feature. */
+ public static final int SUPPORT_HOLD = 0x00000002;
+
+ /** Call can currently be merged. */
+ public static final int MERGE_CALLS = 0x00000004;
+
+ /* Call can currently be swapped with another call. */
+ public static final int SWAP_CALLS = 0x00000008;
+
+ /* Call currently supports adding another call to this one. */
+ public static final int ADD_CALL = 0x00000010;
+
+ /* Call supports responding via text option. */
+ public static final int RESPOND_VIA_TEXT = 0x00000020;
+
+ /* Call can be muted. */
+ public static final int MUTE = 0x00000040;
+
+ /* Call supports generic conference mode. */
+ public static final int GENERIC_CONFERENCE = 0x00000080;
+
+ /* Call currently supports switch between connections. */
+ public static final int CONNECTION_HANDOFF = 0x00000100;
+
+ public static final int ALL = HOLD | SUPPORT_HOLD | MERGE_CALLS | SWAP_CALLS | ADD_CALL
+ | RESPOND_VIA_TEXT | MUTE | GENERIC_CONFERENCE | CONNECTION_HANDOFF;
+}
diff --git a/telecomm/java/android/telecomm/CallNumberPresentation.java b/telecomm/java/android/telecomm/CallNumberPresentation.java
new file mode 100644
index 0000000..6cd22f8
--- /dev/null
+++ b/telecomm/java/android/telecomm/CallNumberPresentation.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2014, The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.telecomm;
+
+/** Defines how numbers are displayed in caller id. */
+public enum CallNumberPresentation {
+ /** Number is displayed normally. */
+ ALLOWED,
+
+ /** Number was blocked. */
+ RESTRICTED,
+
+ /** Presentation was not specified or is unknown. */
+ UNKNOWN,
+
+ /** Number should be displayed as a pay phone. */
+ PAYPHONE
+}