1 /*
2 * Copyright (c) 2022 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 #include "secure_user_info_impl.h"
17
18 namespace OHOS {
19 namespace UserIam {
20 namespace UserAuth {
SecureUserInfoImpl(int32_t userId,uint64_t secUserId,std::vector<std::shared_ptr<EnrolledInfoInterface>> & enrolledInfos)21 SecureUserInfoImpl::SecureUserInfoImpl(int32_t userId, uint64_t secUserId,
22 std::vector<std::shared_ptr<EnrolledInfoInterface>> &enrolledInfos)
23 : userId_(userId), secUserId_(secUserId), enrolledInfos_(enrolledInfos)
24 {
25 }
26
GetUserId() const27 int32_t SecureUserInfoImpl::GetUserId() const
28 {
29 return userId_;
30 }
31
GetSecUserId() const32 uint64_t SecureUserInfoImpl::GetSecUserId() const
33 {
34 return secUserId_;
35 }
36
GetEnrolledInfo() const37 std::vector<std::shared_ptr<EnrolledInfoInterface>> SecureUserInfoImpl::GetEnrolledInfo() const
38 {
39 return enrolledInfos_;
40 }
41 } // namespace UserAuth
42 } // namespace UserIam
43 } // namespace OHOS