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