• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2021 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 package com.android.settings.biometrics.combination;
17 
18 import android.content.Context;
19 import android.os.UserHandle;
20 
21 import androidx.lifecycle.Lifecycle;
22 
23 import com.android.settings.Settings;
24 
25 /**
26  * Preference controller for biometrics settings page of work profile, controlling the ability to
27  * unlock the phone with face and fingerprint.
28  */
29 public class CombinedBiometricProfileStatusPreferenceController extends
30         CombinedBiometricStatusPreferenceController {
31 
32     private static final String KEY_BIOMETRIC_SETTINGS = "biometric_settings_profile";
33 
CombinedBiometricProfileStatusPreferenceController(Context context)34     public CombinedBiometricProfileStatusPreferenceController(Context context) {
35         super(context, KEY_BIOMETRIC_SETTINGS);
36     }
37 
CombinedBiometricProfileStatusPreferenceController(Context context, String key)38     public CombinedBiometricProfileStatusPreferenceController(Context context, String key) {
39         super(context, key);
40     }
41 
CombinedBiometricProfileStatusPreferenceController( Context context, Lifecycle lifecycle)42     public CombinedBiometricProfileStatusPreferenceController(
43             Context context, Lifecycle lifecycle) {
44         super(context, KEY_BIOMETRIC_SETTINGS, lifecycle);
45     }
46 
CombinedBiometricProfileStatusPreferenceController( Context context, String key, Lifecycle lifecycle)47     public CombinedBiometricProfileStatusPreferenceController(
48             Context context, String key, Lifecycle lifecycle) {
49         super(context, key, lifecycle);
50     }
51 
52     @Override
isUserSupported()53     protected boolean isUserSupported() {
54         return mProfileChallengeUserId != UserHandle.USER_NULL
55                 && mLockPatternUtils.isSeparateProfileChallengeAllowed(mProfileChallengeUserId);
56     }
57 
58     @Override
getUserId()59     protected int getUserId() {
60         return mProfileChallengeUserId;
61     }
62 
63     @Override
getSettingsClassName()64     protected String getSettingsClassName() {
65         return Settings.CombinedBiometricProfileSettingsActivity.class.getName();
66     }
67 
68     @Override
getEnrollClassName()69     protected String getEnrollClassName() {
70         return Settings.CombinedBiometricProfileSettingsActivity.class.getName();
71     }
72 }
73