From e8aa66a061b01864de404dc9d496c7b5b21bb6af Mon Sep 17 00:00:00 2001 From: Curtis Belmonte Date: Thu, 11 Jun 2020 11:46:56 -0700 Subject: [PATCH] Update biometric constant docs from tier to class Same as ag/11711578, but updates the names of the biometric security constants in documentation from "Tier 1/2/3" to "Class 1/2/3". This matches the latest language in the Android 11 CDD. Test: m -j Bug: 157266312 Change-Id: Ic5c5674232737f468aa750e60c60dd6a3637a6f8 --- core/java/android/hardware/biometrics/BiometricManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/hardware/biometrics/BiometricManager.java b/core/java/android/hardware/biometrics/BiometricManager.java index 570cc2c117384..f0194d4217606 100644 --- a/core/java/android/hardware/biometrics/BiometricManager.java +++ b/core/java/android/hardware/biometrics/BiometricManager.java @@ -116,14 +116,14 @@ public class BiometricManager { /** * Any biometric (e.g. fingerprint, iris, or face) on the device that meets or exceeds the - * requirements for Tier 3 (formerly Strong), as defined + * requirements for Class 3 (formerly Strong), as defined * by the Android CDD. */ int BIOMETRIC_STRONG = 0x000F; /** * Any biometric (e.g. fingerprint, iris, or face) on the device that meets or exceeds the - * requirements for Tier 2 (formerly Weak), as defined by + * requirements for Class 2 (formerly Weak), as defined by * the Android CDD. * *

Note that this is a superset of {@link #BIOMETRIC_STRONG} and is defined such that @@ -133,7 +133,7 @@ public class BiometricManager { /** * Any biometric (e.g. fingerprint, iris, or face) on the device that meets or exceeds the - * requirements for Tier 1 (formerly Convenience), as + * requirements for Class 1 (formerly Convenience), as * defined by the Android CDD. * *

This constant is intended for use by {@link android.provider.DeviceConfig} to adjust