1 /*
2  * Copyright (C) 2021 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.app.smartspace;
18 
19 import android.app.smartspace.SmartspaceTarget;
20 import android.app.smartspace.SmartspaceTargetEvent;
21 import android.app.smartspace.SmartspaceSessionId;
22 import android.app.smartspace.SmartspaceConfig;
23 import android.app.smartspace.ISmartspaceCallback;
24 import android.content.pm.ParceledListSlice;
25 
26 /**
27  * @hide
28  */
29 oneway interface ISmartspaceManager {
30 
createSmartspaceSession(in SmartspaceConfig config, in SmartspaceSessionId sessionId, in IBinder token)31     void createSmartspaceSession(in SmartspaceConfig config, in SmartspaceSessionId sessionId,
32             in IBinder token);
33 
notifySmartspaceEvent(in SmartspaceSessionId sessionId, in SmartspaceTargetEvent event)34     void notifySmartspaceEvent(in SmartspaceSessionId sessionId, in SmartspaceTargetEvent event);
35 
requestSmartspaceUpdate(in SmartspaceSessionId sessionId)36     void requestSmartspaceUpdate(in SmartspaceSessionId sessionId);
37 
registerSmartspaceUpdates(in SmartspaceSessionId sessionId, in ISmartspaceCallback callback)38     void registerSmartspaceUpdates(in SmartspaceSessionId sessionId,
39             in ISmartspaceCallback callback);
40 
unregisterSmartspaceUpdates(in SmartspaceSessionId sessionId, in ISmartspaceCallback callback)41     void unregisterSmartspaceUpdates(in SmartspaceSessionId sessionId,
42             in ISmartspaceCallback callback);
43 
destroySmartspaceSession(in SmartspaceSessionId sessionId)44     void destroySmartspaceSession(in SmartspaceSessionId sessionId);
45 }
46