blob: 83967f60e5b1a9141ef779f16dd1e55b7d0031ac [file] [log] [blame]
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001/*
Dianne Hackbornc2293022013-02-06 23:14:49 -08002 * Copyright (C) 2013 The Android Open Source Project
Dianne Hackborna06de0f2012-12-11 16:34:47 -08003 *
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 com.android.internal.app;
18
Dianne Hackborn35654b62013-01-14 17:38:02 -080019import android.app.AppOpsManager;
Dianne Hackbornc2293022013-02-06 23:14:49 -080020import com.android.internal.app.IAppOpsCallback;
Dianne Hackborn35654b62013-01-14 17:38:02 -080021
Dianne Hackborna06de0f2012-12-11 16:34:47 -080022interface IAppOpsService {
Dianne Hackborn35654b62013-01-14 17:38:02 -080023 List<AppOpsManager.PackageOps> getPackagesForOps(in int[] ops);
Dianne Hackborn72e39832013-01-18 18:36:09 -080024 List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName, in int[] ops);
Dianne Hackborn5e45ee62013-01-24 19:13:44 -080025 void setMode(int code, int uid, String packageName, int mode);
Dianne Hackborn35654b62013-01-14 17:38:02 -080026 int checkOperation(int code, int uid, String packageName);
Dianne Hackborna06de0f2012-12-11 16:34:47 -080027 int noteOperation(int code, int uid, String packageName);
28 int startOperation(int code, int uid, String packageName);
29 void finishOperation(int code, int uid, String packageName);
Dianne Hackbornc2293022013-02-06 23:14:49 -080030 void startWatchingMode(int op, String packageName, IAppOpsCallback callback);
31 void stopWatchingMode(IAppOpsCallback callback);
Dianne Hackborna06de0f2012-12-11 16:34:47 -080032}