blob: ac6f9614d8f5af09b16a8c9efba9c5bdb1f9151f [file] [log] [blame]
Jonathan Basseri9a1c9b62015-02-25 13:01:52 -08001/**
2 * Copyright (c) 2015, 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 android.service.carrier;
18
Jonathan Basseri4f9ad1672015-05-12 10:06:32 -070019import android.os.PersistableBundle;
Jonathan Basserie05afb02017-07-25 13:34:36 -070020import android.os.ResultReceiver;
Jonathan Basseri9a1c9b62015-02-25 13:01:52 -080021import android.service.carrier.CarrierIdentifier;
22
23/**
Zach Johnson42ecc9e2015-05-22 15:56:09 -070024 * Service used to expose carrier-specific functionality to the system.
Jonathan Basseri9a1c9b62015-02-25 13:01:52 -080025 *
Zach Johnson42ecc9e2015-05-22 15:56:09 -070026 * @see android.service.carrier.CarrierService
Jonathan Basseri9a1c9b62015-02-25 13:01:52 -080027 * @hide
28 */
Zach Johnson42ecc9e2015-05-22 15:56:09 -070029interface ICarrierService {
Jonathan Basseri9a1c9b62015-02-25 13:01:52 -080030
Zach Johnson42ecc9e2015-05-22 15:56:09 -070031 /** @see android.service.carrier.CarrierService#onLoadConfig */
Jonathan Basserie05afb02017-07-25 13:34:36 -070032 oneway void getCarrierConfig(in CarrierIdentifier id, in ResultReceiver result);
Jonathan Basseri4f9ad1672015-05-12 10:06:32 -070033}