summaryrefslogtreecommitdiffstats
path: root/telephony/java/android
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2014-05-26 09:01:20 -0700
committerWink Saville <wink@google.com>2014-05-26 09:01:20 -0700
commitd42f945a3ce0205a98845ea3db7eaa653efd1c66 (patch)
tree8fa4888ec914422496e1dd5daa43ffca1ff00a95 /telephony/java/android
parent915f0ecaca1239d5477836ed9d529efcc532b4c4 (diff)
downloadframeworks_base-d42f945a3ce0205a98845ea3db7eaa653efd1c66.zip
frameworks_base-d42f945a3ce0205a98845ea3db7eaa653efd1c66.tar.gz
frameworks_base-d42f945a3ce0205a98845ea3db7eaa653efd1c66.tar.bz2
Hide LogicalChannel operations developer preview.
Bug: 15193354 Change-Id: I0e41ab7bd8bb3aab9af855f022cb89349802f63f
Diffstat (limited to 'telephony/java/android')
-rw-r--r--telephony/java/android/telephony/TelephonyManager.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java
index 4aed1fe..2483419 100644
--- a/telephony/java/android/telephony/TelephonyManager.java
+++ b/telephony/java/android/telephony/TelephonyManager.java
@@ -1752,6 +1752,8 @@ public class TelephonyManager {
*
* @param AID Application id. See ETSI 102.221 and 101.220.
* @return The logical channel id which is negative on error.
+ *
+ * @hide
*/
public int iccOpenLogicalChannel(String AID) {
try {
@@ -1773,6 +1775,8 @@ public class TelephonyManager {
* @param channel is the channel id to be closed as retruned by a successful
* iccOpenLogicalChannel.
* @return true if the channel was closed successfully.
+ *
+ * @hide
*/
public boolean iccCloseLogicalChannel(int channel) {
try {
@@ -1802,6 +1806,8 @@ public class TelephonyManager {
* @param data Data to be sent with the APDU.
* @return The APDU response from the ICC card with the status appended at
* the end. If an error occurs, an empty string is returned.
+ *
+ * @hide
*/
public String iccTransmitApduLogicalChannel(int channel, int cla,
int instruction, int p1, int p2, int p3, String data) {
@@ -1826,6 +1832,8 @@ public class TelephonyManager {
* @return The APDU response from the ICC card, with the last 4 bytes
* being the status word. If the command fails, returns an empty
* string.
+ *
+ * @hide
*/
public String sendEnvelopeWithStatus(String content) {
try {