FileDocCategorySizeDatePackage
ImsConfigListener.javaAPI DocAndroid 5.1 API6415Sat Mar 14 05:48:12 GMT 2015com.android.ims

ImsConfigListener

public interface ImsConfigListener implements android.os.IInterface
Used by IMS config client to monitor the config operation results. {@hide}

Fields Summary
Constructors Summary
Methods Summary
public voidonGetFeatureResponse(int feature, int network, int value, int status)
Notifies client the value of the get operation result on the feature config item. The arguments are the same as passed to com.android.ims.ImsConfig#getFeatureValue.

param
feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
param
network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX.
param
value. as defined in com.android.ims.ImsConfig#FeatureValueConstants.
param
status. as defined in com.android.ims.ImsConfig#OperationStatusConstants.
return
void.

public voidonSetFeatureResponse(int feature, int network, int value, int status)
Notifies client the set value operation result for feature config item. Used by clients that need to be notified the set operation result. The arguments are the same as passed to com.android.ims.ImsConfig#setFeatureValue. The arguments are repeated in the callback to enable the listener to understand which configuration attempt failed.

param
feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
param
network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX.
param
value. as defined in com.android.ims.ImsConfig#FeatureValueConstants.
param
status. as defined in com.android.ims.ImsConfig#OperationStatusConstants.
return
void.