1/*
2 * Copyright (c) 2014 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;
18
19/**
20 * Used by IMS config client to monitor the config operation results.
21 * {@hide}
22 */
23oneway interface ImsConfigListener {
24    /**
25     * Notifies client the value of the get operation result on the feature config item.
26     * The arguments are the same as passed to com.android.ims.ImsConfig#getFeatureValue.
27     *
28     * @param feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
29     * @param network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX.
30     * @param value. as defined in com.android.ims.ImsConfig#FeatureValueConstants.
31     * @param status. as defined in com.android.ims.ImsConfig#OperationStatusConstants.
32     * @return void.
33     */
34    void onGetFeatureResponse(int feature, int network, int value, int status);
35
36    /**
37     * Notifies client the set value operation result for feature config item.
38     * Used by clients that need to be notified the set operation result.
39     * The arguments are the same as passed to com.android.ims.ImsConfig#setFeatureValue.
40     * The arguments are repeated in the callback to enable the listener to understand
41     * which configuration attempt failed.
42     *
43     * @param feature. as defined in com.android.ims.ImsConfig#FeatureConstants.
44     * @param network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX.
45     * @param value. as defined in com.android.ims.ImsConfig#FeatureValueConstants.
46     * @param status. as defined in com.android.ims.ImsConfig#OperationStatusConstants.
47     *
48     * @return void.
49     */
50    void onSetFeatureResponse(int feature, int network, int value, int status);
51
52    /**
53     * Notifies client the value of the get operation result on the video quality item.
54     *
55     * @param status. as defined in com.android.ims.ImsConfig#OperationStatusConstants.
56     * @param quality. as defined in com.android.ims.ImsConfig#OperationValuesConstants.
57     * @return void
58     *
59     * @throws ImsException if calling the IMS service results in an error.
60     */
61     void onGetVideoQuality(int status, int quality);
62
63    /**
64     * Notifies client the set value operation result for video quality item.
65     * Used by clients that need to be notified the set operation result.
66     *
67     * @param status. as defined in com.android.ims.ImsConfig#OperationStatusConstants.
68     * @return void
69     *
70     * @throws ImsException if calling the IMS service results in an error.
71     */
72     void onSetVideoQuality(int status);
73}
74