diff options
| author | 2024-06-03 17:40:15 +0000 | |
|---|---|---|
| committer | 2024-06-05 18:49:49 +0000 | |
| commit | 05364ce147d0300a9cb5dbd8ad1febd121f11162 (patch) | |
| tree | 148cf0213c83fb46faa5d9b9b6ad10e9ad613106 | |
| parent | ee26b7f5bfb1ee3012388a120e68851f009ee0a3 (diff) | |
Add onRegistrationFailure api in ISatelliteListener
Bug: 343345271
Test: make
Change-Id: Ief6833ca008c6157a95253d80d26ec9e668e1b63
| -rw-r--r-- | telephony/java/android/telephony/satellite/stub/ISatelliteListener.aidl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/satellite/stub/ISatelliteListener.aidl b/telephony/java/android/telephony/satellite/stub/ISatelliteListener.aidl index 5b9dfc67c68c..b4eb15fde632 100644 --- a/telephony/java/android/telephony/satellite/stub/ISatelliteListener.aidl +++ b/telephony/java/android/telephony/satellite/stub/ISatelliteListener.aidl @@ -81,4 +81,12 @@ oneway interface ISatelliteListener { * @param supported True means satellite service is supported and false means it is not. */ void onSatelliteSupportedStateChanged(in boolean supported); + + /** + * Indicates that the satellite registration failed with following failure code + * + * @param causeCode the primary failure cause code of the procedure. + * For LTE (EMM), cause codes are TS 24.301 Sec 9.9.3.9 + */ + void onRegistrationFailure(in int causeCode); } |