1 /* 2 * Copyright (c) 2013 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.ims.internal; 18 19 import android.os.Bundle; 20 21 import android.telephony.ims.ImsCallForwardInfo; 22 import android.telephony.ims.ImsSsInfo; 23 import com.android.ims.internal.IImsUt; 24 import android.telephony.ims.ImsReasonInfo; 25 import android.telephony.ims.ImsSsData; 26 27 /** 28 * {@hide} 29 */ 30 oneway interface IImsUtListener { 31 /** 32 * Notifies the result of the supplementary service configuration udpate. 33 */ 34 @UnsupportedAppUsage utConfigurationUpdated(in IImsUt ut, int id)35 void utConfigurationUpdated(in IImsUt ut, int id); 36 @UnsupportedAppUsage utConfigurationUpdateFailed(in IImsUt ut, int id, in ImsReasonInfo error)37 void utConfigurationUpdateFailed(in IImsUt ut, int id, in ImsReasonInfo error); 38 39 /** 40 * Notifies the result of the supplementary service configuration query. 41 */ 42 @UnsupportedAppUsage utConfigurationQueried(in IImsUt ut, int id, in Bundle ssInfo)43 void utConfigurationQueried(in IImsUt ut, int id, in Bundle ssInfo); 44 @UnsupportedAppUsage utConfigurationQueryFailed(in IImsUt ut, int id, in ImsReasonInfo error)45 void utConfigurationQueryFailed(in IImsUt ut, int id, in ImsReasonInfo error); 46 lineIdentificationSupplementaryServiceResponse(int id, in ImsSsInfo config)47 void lineIdentificationSupplementaryServiceResponse(int id, in ImsSsInfo config); 48 /** 49 * Notifies the status of the call barring supplementary service. 50 */ 51 @UnsupportedAppUsage utConfigurationCallBarringQueried(in IImsUt ut, int id, in ImsSsInfo[] cbInfo)52 void utConfigurationCallBarringQueried(in IImsUt ut, 53 int id, in ImsSsInfo[] cbInfo); 54 55 /** 56 * Notifies the status of the call forwarding supplementary service. 57 */ 58 @UnsupportedAppUsage utConfigurationCallForwardQueried(in IImsUt ut, int id, in ImsCallForwardInfo[] cfInfo)59 void utConfigurationCallForwardQueried(in IImsUt ut, 60 int id, in ImsCallForwardInfo[] cfInfo); 61 62 /** 63 * Notifies the status of the call waiting supplementary service. 64 */ 65 @UnsupportedAppUsage utConfigurationCallWaitingQueried(in IImsUt ut, int id, in ImsSsInfo[] cwInfo)66 void utConfigurationCallWaitingQueried(in IImsUt ut, 67 int id, in ImsSsInfo[] cwInfo); 68 69 /** 70 * Notifies client when Supplementary Service indication is received 71 * 72 * @param ssData Details of SS request and response information 73 */ onSupplementaryServiceIndication(in ImsSsData ssData)74 void onSupplementaryServiceIndication(in ImsSsData ssData); 75 } 76