1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
|
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package android.telephony.ims.stub;
import android.annotation.SystemApi;
import android.annotation.TestApi;
import android.os.Bundle;
import android.os.RemoteException;
import android.telephony.ims.ImsUtListener;
import com.android.ims.internal.IImsUt;
import com.android.ims.internal.IImsUtListener;
/**
* Base implementation of IMS UT interface, which implements stubs. Override these methods to
* implement functionality.
*
* @hide
*/
// DO NOT remove or change the existing APIs, only add new ones to this Base implementation or you
// will break other implementations of ImsUt maintained by other ImsServices.
@SystemApi
@TestApi
public class ImsUtImplBase {
private IImsUt.Stub mServiceImpl = new IImsUt.Stub() {
@Override
public void close() throws RemoteException {
ImsUtImplBase.this.close();
}
@Override
public int queryCallBarring(int cbType) throws RemoteException {
return ImsUtImplBase.this.queryCallBarring(cbType);
}
@Override
public int queryCallForward(int condition, String number) throws RemoteException {
return ImsUtImplBase.this.queryCallForward(condition, number);
}
@Override
public int queryCFForServiceClass(int condition, String number, int serviceClass) throws
RemoteException {
return ImsUtImplBase.this.queryCFForServiceClass(condition, number, serviceClass);
}
@Override
public int queryCallWaiting() throws RemoteException {
return ImsUtImplBase.this.queryCallWaiting();
}
@Override
public int queryCLIR() throws RemoteException {
return ImsUtImplBase.this.queryCLIR();
}
@Override
public int queryCLIP() throws RemoteException {
return ImsUtImplBase.this.queryCLIP();
}
@Override
public int queryCOLR() throws RemoteException {
return ImsUtImplBase.this.queryCOLR();
}
@Override
public int queryCOLP() throws RemoteException {
return ImsUtImplBase.this.queryCOLP();
}
@Override
public int transact(Bundle ssInfo) throws RemoteException {
return ImsUtImplBase.this.transact(ssInfo);
}
@Override
public int updateCallBarring(int cbType, int action, String[] barrList) throws
RemoteException {
return ImsUtImplBase.this.updateCallBarring(cbType, action, barrList);
}
@Override
public int updateCallForward(int action, int condition, String number, int serviceClass,
int timeSeconds) throws RemoteException {
return ImsUtImplBase.this.updateCallForward(action, condition, number, serviceClass,
timeSeconds);
}
@Override
public int updateCallWaiting(boolean enable, int serviceClass) throws RemoteException {
return ImsUtImplBase.this.updateCallWaiting(enable, serviceClass);
}
@Override
public int updateCLIR(int clirMode) throws RemoteException {
return ImsUtImplBase.this.updateCLIR(clirMode);
}
@Override
public int updateCLIP(boolean enable) throws RemoteException {
return ImsUtImplBase.this.updateCLIP(enable);
}
@Override
public int updateCOLR(int presentation) throws RemoteException {
return ImsUtImplBase.this.updateCOLR(presentation);
}
@Override
public int updateCOLP(boolean enable) throws RemoteException {
return ImsUtImplBase.this.updateCOLP(enable);
}
@Override
public void setListener(IImsUtListener listener) throws RemoteException {
ImsUtImplBase.this.setListener(new ImsUtListener(listener));
}
@Override
public int queryCallBarringForServiceClass(int cbType, int serviceClass)
throws RemoteException {
return ImsUtImplBase.this.queryCallBarringForServiceClass(cbType, serviceClass);
}
@Override
public int updateCallBarringForServiceClass(int cbType, int action,
String[] barrList, int serviceClass) throws RemoteException {
return ImsUtImplBase.this.updateCallBarringForServiceClass(
cbType, action, barrList, serviceClass);
}
};
/**
* Called when the framework no longer needs to interact with the IMS UT implementation any
* longer.
*/
public void close() {
}
/**
* Retrieves the call barring configuration.
* @param cbType
*/
public int queryCallBarring(int cbType) {
return -1;
}
/**
* Retrieves the configuration of the call barring for specified service class.
*/
public int queryCallBarringForServiceClass(int cbType, int serviceClass) {
return -1;
}
/**
* Retrieves the configuration of the call forward.
*/
public int queryCallForward(int condition, String number) {
return -1;
}
/**
* Retrieves the configuration of the call forward for specified service class.
*/
public int queryCFForServiceClass(int condition, String number,
int serviceClass) {
return -1;
}
/**
* Retrieves the configuration of the call waiting.
*/
public int queryCallWaiting() {
return -1;
}
/**
* Retrieves the default CLIR setting.
* @hide
*/
public int queryCLIR() {
return queryClir();
}
/**
* Retrieves the CLIP call setting.
* @hide
*/
public int queryCLIP() {
return queryClip();
}
/**
* Retrieves the COLR call setting.
* @hide
*/
public int queryCOLR() {
return queryColr();
}
/**
* Retrieves the COLP call setting.
* @hide
*/
public int queryCOLP() {
return queryColp();
}
/**
* Retrieves the default CLIR setting.
*/
public int queryClir() {
return -1;
}
/**
* Retrieves the CLIP call setting.
*/
public int queryClip() {
return -1;
}
/**
* Retrieves the COLR call setting.
*/
public int queryColr() {
return -1;
}
/**
* Retrieves the COLP call setting.
*/
public int queryColp() {
return -1;
}
/**
* Updates or retrieves the supplementary service configuration.
*/
public int transact(Bundle ssInfo) {
return -1;
}
/**
* Updates the configuration of the call barring.
*/
public int updateCallBarring(int cbType, int action, String[] barrList) {
return -1;
}
/**
* Updates the configuration of the call barring for specified service class.
*/
public int updateCallBarringForServiceClass(int cbType, int action, String[] barrList,
int serviceClass) {
return -1;
}
/**
* Updates the configuration of the call forward.
*/
public int updateCallForward(int action, int condition, String number, int serviceClass,
int timeSeconds) {
return 0;
}
/**
* Updates the configuration of the call waiting.
*/
public int updateCallWaiting(boolean enable, int serviceClass) {
return -1;
}
/**
* Updates the configuration of the CLIR supplementary service.
* @hide
*/
public int updateCLIR(int clirMode) {
return updateClir(clirMode);
}
/**
* Updates the configuration of the CLIP supplementary service.
* @hide
*/
public int updateCLIP(boolean enable) {
return updateClip(enable);
}
/**
* Updates the configuration of the COLR supplementary service.
* @hide
*/
public int updateCOLR(int presentation) {
return updateColr(presentation);
}
/**
* Updates the configuration of the COLP supplementary service.
* @hide
*/
public int updateCOLP(boolean enable) {
return updateColp(enable);
}
/**
* Updates the configuration of the CLIR supplementary service.
*/
public int updateClir(int clirMode) {
return -1;
}
/**
* Updates the configuration of the CLIP supplementary service.
*/
public int updateClip(boolean enable) {
return -1;
}
/**
* Updates the configuration of the COLR supplementary service.
*/
public int updateColr(int presentation) {
return -1;
}
/**
* Updates the configuration of the COLP supplementary service.
*/
public int updateColp(boolean enable) {
return -1;
}
/**
* Sets the listener.
*/
public void setListener(ImsUtListener listener) {
}
/**
* @hide
*/
public IImsUt getInterface() {
return mServiceImpl;
}
}
|