/*
 * Copyright (C) 2022 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.platform.helpers;

/** Constants for Android Auto Settings */
public class SettingsConstants {
    // Settings Workflow constants
    public static final String SOUND_SETTINGS = "OPEN_SOUND_SETTINGS_WORKFLOW";
    public static final String NETWORK_AND_INTERNET_SETTINGS =
            "OPEN_NETWORK_AND_INTERNET_SETTINGS_WORKFLOW";
    public static final String BLUETOOTH_SETTINGS = "OPEN_BLUETOOTH_SETTINGS_WORKFLOW";
    public static final String SYSTEM_SETTINGS = "OPEN_SYSTEM_SETTINGS_WORKFLOW";
    public static final String PROFILE_ACCOUNT_SETTINGS = "OPEN_PROFILE_ACCOUNT_SETTINGS_WORKFLOW";
    public static final String APPS_SETTINGS = "OPEN_APPS_SETTINGS_WORKFLOW";
    public static final String SECURITY_SETTINGS = "OPEN_SECURITY_SETTINGS_WORKFLOW";
    public static final String DISPLAY_SETTINGS = "OPEN_DISPLAY_SETTINGS_WORKFLOW";
    public static final String DATE_AND_TIME_SETTINGS = "OPEN_DATE_AND_TIME_SETTINGS_WORKFLOW";
    public static final String PRIVACY_SETTINGS = "OPEN_PRIVACY_SETTINGS_WORKFLOW";
    public static final String LOCATION_SETTINGS = "OPEN_LOCATION_SETTINGS_WORKFLOW";
}
