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 #include "metadata/version_meta_data.h" 17 18 namespace OHOS::DistributedData { VersionMetaData()19VersionMetaData::VersionMetaData() 20 { 21 } 22 ~VersionMetaData()23VersionMetaData::~VersionMetaData() 24 { 25 } 26 Marshal(json & node) const27bool VersionMetaData::Marshal(json &node) const 28 { 29 bool ret = true; 30 ret = SetValue(node[GET_NAME(version)], version) && ret; 31 return ret; 32 } 33 Unmarshal(const json & node)34bool VersionMetaData::Unmarshal(const json &node) 35 { 36 bool ret = true; 37 ret = GetValue(node, GET_NAME(version), version) && ret; 38 return ret; 39 } 40 GetKey() const41std::string VersionMetaData::GetKey() const 42 { 43 return KEY_PREFIX; 44 } 45 } // namespace OHOS::DistributedData