diff options
author | Sailesh Nepal <sail@google.com> | 2014-04-01 21:31:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-04-01 21:31:26 +0000 |
commit | 466a2185116b7cf7b800196756113278ebe0575e (patch) | |
tree | 975232ef0f873cbe86d58041c8ec795f07d57e30 /telecomm | |
parent | 7d097781f4805c8d7f80a38b36ed2a94a2e29c58 (diff) | |
parent | f6e9b27f93ef2d0b806e8b24d3082234ae222d33 (diff) | |
download | frameworks_base-466a2185116b7cf7b800196756113278ebe0575e.zip frameworks_base-466a2185116b7cf7b800196756113278ebe0575e.tar.gz frameworks_base-466a2185116b7cf7b800196756113278ebe0575e.tar.bz2 |
Merge "Add CallCapabilities and CallNumberPresentation" into master-nova
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecomm/CallCapabilities.java | 50 | ||||
-rw-r--r-- | telecomm/java/android/telecomm/CallNumberPresentation.java | 32 |
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 +} |