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.platform.helpers;
18 
19 /** Constants for Android Auto Settings */
20 public class SettingsConstants {
21     // Settings Workflow constants
22     public static final String SOUND_SETTINGS = "OPEN_SOUND_SETTINGS_WORKFLOW";
23     public static final String NETWORK_AND_INTERNET_SETTINGS =
24             "OPEN_NETWORK_AND_INTERNET_SETTINGS_WORKFLOW";
25     public static final String BLUETOOTH_SETTINGS = "OPEN_BLUETOOTH_SETTINGS_WORKFLOW";
26     public static final String SYSTEM_SETTINGS = "OPEN_SYSTEM_SETTINGS_WORKFLOW";
27     public static final String PROFILE_ACCOUNT_SETTINGS = "OPEN_PROFILE_ACCOUNT_SETTINGS_WORKFLOW";
28     public static final String APPS_SETTINGS = "OPEN_APPS_SETTINGS_WORKFLOW";
29     public static final String SECURITY_SETTINGS = "OPEN_SECURITY_SETTINGS_WORKFLOW";
30     public static final String DISPLAY_SETTINGS = "OPEN_DISPLAY_SETTINGS_WORKFLOW";
31     public static final String DATE_AND_TIME_SETTINGS = "OPEN_DATE_AND_TIME_SETTINGS_WORKFLOW";
32     public static final String PRIVACY_SETTINGS = "OPEN_PRIVACY_SETTINGS_WORKFLOW";
33     public static final String LOCATION_SETTINGS = "OPEN_LOCATION_SETTINGS_WORKFLOW";
34 }
35