Add REENROLL_REQUIRED to IFace

Bug: 180723766
Test: m android.hardware.biometrics.face-update-api
Change-Id: I4687828a9e1bcd42633b28f16656d99632b63520
This commit is contained in:
Ilya Matyukhin
2021-02-19 15:12:28 -08:00
parent c6ad586abe
commit bf5b361fa8
2 changed files with 6 additions and 1 deletions

View File

@@ -40,4 +40,5 @@ enum Error {
CANCELED = 5,
UNABLE_TO_REMOVE = 6,
VENDOR = 8,
REENROLL_REQUIRED = 16,
}

View File

@@ -87,5 +87,9 @@ enum Error {
*
* LOCKOUT_PERMANENT = 9
*/
}
/**
* Authentication cannot be performed because re-enrollment is required.
*/
REENROLL_REQUIRED = 16,
}