ImsEcbmpublic class ImsEcbm extends Object Provides APIs for the supplementary service settings using IMS (Ut interface).
It is created from 3GPP TS 24.623 (XCAP(XML Configuration Access Protocol)
over the Ut interface for manipulating supplementary services). |
Fields Summary |
---|
private static final String | TAG | private static final boolean | DBG | private final com.android.ims.internal.IImsEcbm | miEcbm |
Methods Summary |
---|
public void | exitEmergencyCallbackMode()
try {
miEcbm.exitEmergencyCallbackMode();
} catch (RemoteException e) {
throw new ImsException("exitEmergencyCallbackMode()", e,
ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN);
}
| public void | setEcbmStateListener(com.android.ims.ImsEcbmStateListener ecbmListener)
try {
miEcbm.setListener(new ImsEcbmListenerProxy(ecbmListener));
} catch (RemoteException e) {
throw new ImsException("setEcbmStateListener()", e,
ImsReasonInfo.CODE_LOCAL_IMS_SERVICE_DOWN);
}
|
|