1 /*
2  * Copyright (C) 2019 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 android.car;
18 
19 /** @hide */
20 interface IExperimentalCarHelper {
21     /**
22      * Notify the completion of init to car service.
23      * @param allAvailableFeatures All features available in the package.
24      * @param startedFeatures Started features. This is a subset of enabledFeatures passed through
25      *        IExperimentalCar.init(..). Only available features should be started.
26      * @param classNames Car*Manager class names for all started experimental features. Class name
27      *        can be null if the feature does not have Car*Manager (=internal feature).
28      * @param binders Car*Manager binders for all started experimental features. Binder can be null
29      *        if the feature does not have Car*Manager.
30      */
onInitComplete(in List<String> allAvailableFeatures, in List<String> startedFeatures, in List<String> classNames, in List<IBinder> binders)31     void onInitComplete(in List<String> allAvailableFeatures, in List<String> startedFeatures,
32             in List<String> classNames, in List<IBinder> binders);
33 }
34