diff options
| author | 2014-10-31 10:04:13 -0500 | |
|---|---|---|
| committer | 2014-12-09 10:03:21 -0800 | |
| commit | 2cdac3bd53a1e8e8342a3cff9d53bb7c5b27b1c9 (patch) | |
| tree | d477bd3eabc1a8836af5129eb277af67ef18612c | |
| parent | bec2c3e25124552c6c86a1c1723ce3562edcaaff (diff) | |
IMS: change getMasterValue to getProvisionedValue.
Bug: 18576107
Change-Id: I21293d42b87911a98af8169b697d0e40eafb8760
| -rw-r--r-- | telephony/java/com/android/ims/internal/IImsConfig.aidl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/telephony/java/com/android/ims/internal/IImsConfig.aidl b/telephony/java/com/android/ims/internal/IImsConfig.aidl index 0109a0987d4d..c17637cc4ec8 100644 --- a/telephony/java/com/android/ims/internal/IImsConfig.aidl +++ b/telephony/java/com/android/ims/internal/IImsConfig.aidl @@ -49,22 +49,22 @@ import com.android.ims.ImsConfigListener; */ interface IImsConfig { /** - * Gets the value for ims service/capabilities parameters from the master + * Gets the value for ims service/capabilities parameters from the provisioned * value storage. Synchronous blocking call. * * @param item, as defined in com.android.ims.ImsConfig#ConfigConstants. * @return value in Integer format. */ - int getMasterValue(int item); + int getProvisionedValue(int item); /** - * Gets the value for ims service/capabilities parameters from the master + * Gets the value for ims service/capabilities parameters from the provisioned * value storage. Synchronous blocking call. * * @param item, as defined in com.android.ims.ImsConfig#ConfigConstants. * @return value in String format. */ - String getMasterStringValue(int item); + String getProvisionedStringValue(int item); /** * Sets the value for IMS service/capabilities parameters by the operator device |