diff options
author | Shri Borde <shri@google.com> | 2014-09-02 09:48:49 -0700 |
---|---|---|
committer | Shri Borde <shri@google.com> | 2014-09-02 14:00:21 -0700 |
commit | 7237972bffba11fcb5588e8cb0c98e9e7add7871 (patch) | |
tree | 87497d8c5f49051750bfc3fd9a58a3fe56f9bf3c /telephony/java | |
parent | 4dc653aaa2c10c0f98d7e42229a2bc7903271fc4 (diff) | |
download | frameworks_base-7237972bffba11fcb5588e8cb0c98e9e7add7871.zip frameworks_base-7237972bffba11fcb5588e8cb0c98e9e7add7871.tar.gz frameworks_base-7237972bffba11fcb5588e8cb0c98e9e7add7871.tar.bz2 |
Bug 17243357: Remove MessagingConfigurationManager
It is replaced with SmsManager.getCarrierConfigValues
Change-Id: I560a53427b08746f2a7ed2e540ecb2c978b7ebd0
Diffstat (limited to 'telephony/java')
-rw-r--r-- | telephony/java/com/android/internal/telephony/IMms.aidl | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/telephony/java/com/android/internal/telephony/IMms.aidl b/telephony/java/com/android/internal/telephony/IMms.aidl index cbcef25..2aeb42f 100644 --- a/telephony/java/com/android/internal/telephony/IMms.aidl +++ b/telephony/java/com/android/internal/telephony/IMms.aidl @@ -19,6 +19,7 @@ package com.android.internal.telephony; import android.app.PendingIntent; import android.content.ContentValues; import android.net.Uri; +import android.os.Bundle; /** * Service interface to handle MMS API requests @@ -78,33 +79,11 @@ interface IMms { void updateMmsDownloadStatus(int messageRef, in byte[] pdu); /** - * Get carrier-dependent configuration value as boolean. For example, if multipart SMS - * is supported. + * Get carrier-dependent configuration values. * * @param subId the SIM id - * @param name the configuration name - * @param defaultValue the default value if fail to find the name */ - boolean getCarrierConfigBoolean(long subId, String name, boolean defaultValue); - - /** - * Get carrier-dependent configuration value as int. For example, the MMS message size limit. - * - * @param subId the SIM id - * @param name the configuration name - * @param defaultValue the default value if fail to find the name - */ - int getCarrierConfigInt(long subId, String name, int defaultValue); - - /** - * Get carrier-dependent configuration value as String. For example, extra HTTP headers for - * MMS request. - * - * @param subId the SIM id - * @param name the configuration name - * @param defaultValue the default value if fail to find the name - */ - String getCarrierConfigString(long subId, String name, String defaultValue); + Bundle getCarrierConfigValues(long subId); /** * Import a text message into system's SMS store |