1 /*
2  * Copyright (C) 2022 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.adservices.ondevicepersonalization;
18 
19 import android.annotation.FlaggedApi;
20 import android.annotation.SystemApi;
21 
22 import com.android.adservices.ondevicepersonalization.flags.Flags;
23 
24 /**
25  * OnDevicePersonalization permission settings.
26  *
27  * @hide
28 */
29 @SystemApi
30 @FlaggedApi(Flags.FLAG_ON_DEVICE_PERSONALIZATION_APIS_ENABLED)
31 public class OnDevicePersonalizationPermissions {
OnDevicePersonalizationPermissions()32     private OnDevicePersonalizationPermissions() {}
33 
34     /**
35      * The permission that lets it modify ODP's enablement state.
36      */
37     public static final String MODIFY_ONDEVICEPERSONALIZATION_STATE =
38             "android.permission.ondevicepersonalization.MODIFY_ONDEVICEPERSONALIZATION_STATE";
39 
40     /**
41      * The permission required for callers to send measurement events to ODP.
42      */
43     public static final String NOTIFY_MEASUREMENT_EVENT =
44             "android.permission.ondevicepersonalization.NOTIFY_MEASUREMENT_EVENT";
45 
46     /**
47      * The permission required to connect to the ODP system server component.
48      * @hide
49      */
50     public static final String ACCESS_SYSTEM_SERVER_SERVICE =
51             "android.permission.ondevicepersonalization.ACCESS_SYSTEM_SERVER_SERVICE";
52 }
53