1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FINGERPRINT_AUTH_HDI 17 #define FINGERPRINT_AUTH_HDI 18 19 #include "v2_0/all_in_one_executor_stub.h" 20 #include "v2_0/fingerprint_auth_interface_stub.h" 21 #include "v2_0/fingerprint_auth_types.h" 22 #include "v2_0/iall_in_one_executor.h" 23 #include "v2_0/iexecutor_callback.h" 24 #include "v2_0/ifingerprint_auth_interface.h" 25 #include "v2_0/isa_command_callback.h" 26 27 namespace OHOS { 28 namespace HDI { 29 namespace FingerprintAuth { 30 using IFingerprintAuthInterface = OHOS::HDI::FingerprintAuth::V2_0::IFingerprintAuthInterface; 31 using FingerprintAuthInterfaceStub = OHOS::HDI::FingerprintAuth::V2_0::FingerprintAuthInterfaceStub; 32 using AllInOneExecutorStub = OHOS::HDI::FingerprintAuth::V2_0::AllInOneExecutorStub; 33 34 using IExecutorCallback = OHOS::HDI::FingerprintAuth::V2_0::IExecutorCallback; 35 36 using IAllInOneExecutor = OHOS::HDI::FingerprintAuth::V2_0::IAllInOneExecutor; 37 38 using AuthType = OHOS::HDI::FingerprintAuth::V2_0::AuthType; 39 using ExecutorRole = OHOS::HDI::FingerprintAuth::V2_0::ExecutorRole; 40 using ExecutorSecureLevel = OHOS::HDI::FingerprintAuth::V2_0::ExecutorSecureLevel; 41 using DriverCommandId = OHOS::HDI::FingerprintAuth::V2_0::DriverCommandId; 42 using FingerprintTipsCode = OHOS::HDI::FingerprintAuth::V2_0::FingerprintTipsCode; 43 using ExecutorInfo = OHOS::HDI::FingerprintAuth::V2_0::ExecutorInfo; 44 45 using GetPropertyType = OHOS::HDI::FingerprintAuth::V2_0::GetPropertyType; 46 using Property = OHOS::HDI::FingerprintAuth::V2_0::Property; 47 using SaCommandId = OHOS::HDI::FingerprintAuth::V2_0::SaCommandId; 48 using SaCommandParamNone = OHOS::HDI::FingerprintAuth::V2_0::SaCommandParamNone; 49 using SaCommandParam = OHOS::HDI::FingerprintAuth::V2_0::SaCommandParam; 50 using SaCommand = OHOS::HDI::FingerprintAuth::V2_0::SaCommand; 51 52 using ISaCommandCallback = OHOS::HDI::FingerprintAuth::V2_0::ISaCommandCallback; 53 } // namespace FingerprintAuth 54 } // namespace HDI 55 } // namespace OHOS 56 57 #endif // FINGERPRINT_AUTH_HDI