blob: 02e44e94e395ae970554b34b684956f05cf1447e [file] [log] [blame]
Kevin Chyn037c4d52018-06-11 19:17:32 -07001/*
2 * Copyright (C) 2018 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
Kevin Chyn836f2cf2018-08-27 11:06:39 -070017package com.android.server.biometrics;
Kevin Chyn037c4d52018-06-11 19:17:32 -070018
19public interface Metrics {
20 /** The log tag */
21 String logTag();
22
23 /** Strings for MetricsLogger.count() and MetricsLogger.histogram() */
24 String tagHalDied();
25 String tagAuthToken();
26 String tagAuthStartError();
27 String tagEnrollStartError();
28 String tagEnumerateStartError();
29 String tagRemoveStartError();
30
31 /** Integers for MetricsLogger.action() */
32 int actionBiometricAuth();
33 int actionBiometricEnroll();
34}