blob: f361b5c35f05632a15ec99773def47fecd5fd19d [file] [log] [blame]
Jim Millerdcb3d842012-08-23 19:18:12 -07001/*
2 * Copyright (C) 2012 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 */
Jim Miller5ecd8112013-01-09 18:50:26 -080016package com.android.keyguard;
Jim Millerdcb3d842012-08-23 19:18:12 -070017
18public interface KeyguardSecurityCallback {
19
20 /**
21 * Dismiss the given security screen.
22 * @param securityVerified true if the user correctly entered credentials for the given screen.
23 */
24 void dismiss(boolean securityVerified);
25
26 /**
Jorim Jaggib690f0d2014-07-03 23:25:44 +020027 * Manually report user activity to keep the device awake.
Jim Millerdcb3d842012-08-23 19:18:12 -070028 */
Jorim Jaggib690f0d2014-07-03 23:25:44 +020029 void userActivity();
Jim Millerdcb3d842012-08-23 19:18:12 -070030
31 /**
32 * Checks if keyguard is in "verify credentials" mode.
33 * @return true if user has been asked to verify security.
34 */
35 boolean isVerifyUnlockOnly();
36
37 /**
Jim Miller5a8daad2014-01-14 18:57:03 -080038 * Call to report an unlock attempt.
39 * @param success set to 'true' if user correctly entered security credentials.
Jim Millerdcb3d842012-08-23 19:18:12 -070040 */
Jim Miller7751ff62014-01-14 18:57:03 -080041 void reportUnlockAttempt(boolean success);
Jim Millerdcb3d842012-08-23 19:18:12 -070042
43 /**
Jim Miller258341c2012-08-30 16:50:10 -070044 * Shows the backup security for the current method. If none available, this call is a no-op.
Jim Millerdcb3d842012-08-23 19:18:12 -070045 */
Jim Miller258341c2012-08-30 16:50:10 -070046 void showBackupSecurity();
Jim Millerdcb3d842012-08-23 19:18:12 -070047
Jim Millerdcb3d842012-08-23 19:18:12 -070048}