IImsUtListener.aidl revision f8458ff9d97f8961d67c41ee107129ecba873f36
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
17package com.android.ims.internal;
18
19import android.os.Bundle;
20
21import com.android.ims.ImsCallForwardInfo;
22import com.android.ims.ImsSsInfo;
23import com.android.ims.internal.IImsUt;
24
25/**
26 * {@hide}
27 */
28interface IImsUtListener {
29    /**
30     * Notifies the result of the supplementary service configuration udpate.
31     */
32    void utConfigurationUpdated(in IImsUt ut, int id);
33    void utConfigurationUpdateFailed(in IImsUt ut, int id, int errorCode);
34
35    /**
36     * Notifies the result of the supplementary service configuration query.
37     */
38    void utConfigurationQueried(in IImsUt ut, int id, in Bundle ssInfo);
39    void utConfigurationQueryFailed(in IImsUt ut, int id, int errorCode);
40
41    /**
42     * Notifies the status of the call barring supplementary service.
43     */
44    void utConfigurationCallBarringQueried(in IImsUt ut,
45            int id, in ImsSsInfo[] cbInfo);
46
47    /**
48     * Notifies the status of the call forwarding supplementary service.
49     */
50    void utConfigurationCallForwardQueried(in IImsUt ut,
51            int id, in ImsCallForwardInfo[] cfInfo);
52
53    /**
54     * Notifies the status of the call waiting supplementary service.
55     */
56    void utConfigurationCallWaitingQueried(in IImsUt ut,
57            int id, in ImsSsInfo[] cwInfo);
58}
59