1 /* 2 * Copyright (C) 2024 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 MOCK_APP_DOMAIN_VERIFY_MGR_CLIENT_H 17 #define MOCK_APP_DOMAIN_VERIFY_MGR_CLIENT_H 18 19 #include <memory> 20 #include "singleton.h" 21 22 #include "refbase.h" 23 namespace AAFwk { 24 class Want; 25 } // namespace AAFwk 26 27 namespace OHOS { 28 namespace AppDomainVerify { 29 class AppDomainVerifyMgrClient : public DelayedSingleton<AppDomainVerifyMgrClient> { 30 DECLARE_DELAYED_SINGLETON(AppDomainVerifyMgrClient); 31 32 public: 33 DISALLOW_COPY_AND_MOVE(AppDomainVerifyMgrClient); 34 35 /** 36 * QueryAppDetailsWant 37 * @descrition query app details as want. 38 * @param link uri 39 * @param want appdetails want. 40 * @return int result of query. 41 */ 42 int QueryAppDetailsWant(const std::string& link, AAFwk::Want& want); 43 }; 44 } // namespace AppDomainVerify 45 } // namespace OHOS 46 #endif // MOCK_APP_DOMAIN_VERIFY_MGR_CLIENT_H