blob: 6f73d02caa12c1219f3af19df5944012d0193ac0 [file] [log] [blame]
Jason Monk8f5f7ff2017-10-17 14:12:42 -04001/**
2 * Copyright (c) 2017, 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.app.slice;
18
Jason Monk74f5e362017-12-06 08:56:33 -050019import android.app.slice.SliceSpec;
20import android.net.Uri;
21
Jason Monk8f5f7ff2017-10-17 14:12:42 -040022/** @hide */
23interface ISliceManager {
Jason Monk38df2802018-02-22 19:28:12 -050024 void pinSlice(String pkg, in Uri uri, in SliceSpec[] specs, in IBinder token);
25 void unpinSlice(String pkg, in Uri uri, in IBinder token);
Jason Monk74f5e362017-12-06 08:56:33 -050026 boolean hasSliceAccess(String pkg);
27 SliceSpec[] getPinnedSpecs(in Uri uri, String pkg);
Jason Monkf88d25e2018-03-06 20:13:24 -050028 Uri[] getPinnedSlices(String pkg);
Jason Monkb715b042018-02-01 15:00:05 -050029
30 byte[] getBackupPayload(int user);
31 void applyRestore(in byte[] payload, int user);
Jason Monkbf3eedc2018-04-05 20:56:42 -040032
33 // Perms.
34 void grantSlicePermission(String callingPkg, String toPkg, in Uri uri);
35 void revokeSlicePermission(String callingPkg, String toPkg, in Uri uri);
Jason Monkfe4885e2018-07-23 13:31:30 -040036 int checkSlicePermission(in Uri uri, String callingPkg, String pkg, int pid, int uid,
Jason Monkbf3eedc2018-04-05 20:56:42 -040037 in String[] autoGrantPermissions);
38 void grantPermissionFromUser(in Uri uri, String pkg, String callingPkg, boolean allSlices);
Jason Monk8f5f7ff2017-10-17 14:12:42 -040039}