/* * Copyright (c) 2022 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. */ #include "iplugin.h" #include #include "policy_manager.h" namespace OHOS { namespace EDM { std::string IPlugin::GetPolicyName() { return policyName_; } bool IPlugin::NeedSavePolicy() { return needSave_; } bool IPlugin::IsGlobalPolicy() { return isGlobal_; } std::string IPlugin::GetPermission() { return permission_; } std::uint32_t IPlugin::GetCode() { return policyCode_; } ErrCode IPlugin::MergePolicyData(const std::string &adminName, std::string &mergeJsonData) { std::shared_ptr ptr = PolicyManager::GetInstance(); AdminValueItemsMap map; if (ptr != nullptr) { ptr->GetAdminByPolicyName(policyName_, map); } return ERR_OK; } ErrCode IPlugin::WritePolicyToParcel(const std::string &policyJsonData, MessageParcel &reply) { return reply.WriteString16(Str8ToStr16(policyJsonData)) ? ERR_OK : ERR_EDM_OPERATE_PARCEL; } IPlugin::~IPlugin() {} } // namespace EDM } // namespace OHOS