1 /* 2 * Copyright (c) 2021-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 package com.ohos.hapsigntool.profile.model; 17 18 import com.google.gson.JsonObject; 19 20 /** 21 * VerificationResult. 22 * 23 * @since 2021/12/28 24 */ 25 public class VerificationResult { 26 /** 27 * Field verifiedPassed. 28 */ 29 private boolean verifiedPassed; 30 31 /** 32 * Field message. 33 */ 34 private String message; 35 36 /** 37 * Field content. 38 */ 39 private JsonObject content; 40 isVerifiedPassed()41 public boolean isVerifiedPassed() { 42 return verifiedPassed; 43 } 44 setVerifiedPassed(boolean verifiedPassed)45 public void setVerifiedPassed(boolean verifiedPassed) { 46 this.verifiedPassed = verifiedPassed; 47 } 48 getMessage()49 public String getMessage() { 50 return this.message; 51 } 52 setMessage(String string)53 public void setMessage(String string) { 54 this.message = string; 55 } 56 getContent()57 public JsonObject getContent() { 58 return content; 59 } 60 setContent(JsonObject provision)61 public void setContent(JsonObject provision) { 62 this.content = provision; 63 } 64 } 65