Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66f6728e authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Rename getOpId() to getOperationHandle()." into main

parents 1672bdbb 424526dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18634,7 +18634,7 @@ package android.hardware.biometrics {
    method @Deprecated @Nullable public android.security.identity.IdentityCredential getIdentityCredential();
    method @FlaggedApi("android.hardware.biometrics.add_key_agreement_crypto_object") @Nullable public javax.crypto.KeyAgreement getKeyAgreement();
    method @Nullable public javax.crypto.Mac getMac();
    method @FlaggedApi("android.hardware.biometrics.get_op_id_crypto_object") public long getOpId();
    method @FlaggedApi("android.hardware.biometrics.get_op_id_crypto_object") public long getOperationHandle();
    method @Nullable public android.security.identity.PresentationSession getPresentationSession();
    method @Nullable public java.security.Signature getSignature();
  }
+1 −1
Original line number Diff line number Diff line
@@ -857,7 +857,7 @@ public class BiometricPrompt implements BiometricAuthenticator, BiometricConstan
         * Get the operation handle associated with this object or 0 if none.
         */
        @FlaggedApi(FLAG_GET_OP_ID_CRYPTO_OBJECT)
        public long getOpId() {
        public long getOperationHandle() {
            return super.getOpId();
        }
    }