/*
* Copyright (c) 2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @addtogroup HdfFaceAuth
* @{
*
* @brief Provides APIs for the face auth driver.
*
* The face auth driver provides a unified interface for the face auth service to access the face auth driver.
* After obtaining the face auth driver proxy, the service can call related APIs to obtain executors.
* After obtaining the face auth executors, the service can call related APIs to get executor information, get
* template information, and enroll, authenticate, and delete templates, etc.
*
* @since 4.0
*/
/**
* @file ISaCommandCallback.idl
*
* @brief Defines the callback for an async API, which can be used to send command to SA.
*
* @since 4.0
*/
package ohos.hdi.face_auth.v2_0;
import ohos.hdi.face_auth.v2_0.FaceAuthTypes;
/**
* @brief Defines the callback for an async API, which can be used to send command to SA.
*
* @since 4.0
* @version 1.1
*/
[callback] interface ISaCommandCallback {
/**
* @brief Defines the function for sa commands in process.
*
* @param commands Indicates sa commands. See {@link SaCommand}.
*
* @return Returns <b>0</b> if the operation is successful.
* @return Returns a non-zero value if the operation fails.
*
* @since 4.0
* @version 1.1
*/
OnSaCommands([in] struct SaCommand[] commands);
}
/** @} */