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.annotations.SerializedName; 19 import com.ohos.hapsigntool.error.ERROR; 20 import com.ohos.hapsigntool.utils.ValidateUtils; 21 22 /** 23 * Sub dto of Provision. 24 * 25 * @since 2021/12/28 26 */ 27 public class Validity { 28 /** 29 * Field not-before. 30 */ 31 @SerializedName("not-before") 32 private Long notBefore; 33 34 /** 35 * Field not-after. 36 */ 37 @SerializedName("not-after") 38 private Long notAfter; 39 40 /** 41 * Sub dto of Provision. 42 */ Validity()43 public Validity() { 44 // Empty constructor of Validity. 45 } 46 47 /** 48 * Validate attribute. 49 */ enforceValid()50 public void enforceValid() { 51 ValidateUtils.throwIfMatches(this.notBefore == 0L, ERROR.SIGN_ERROR, "Require notBefore in validity!"); 52 ValidateUtils.throwIfMatches(this.notAfter == 0L, ERROR.SIGN_ERROR, "Require notAfter in validity!"); 53 ValidateUtils.throwIfMatches(this.notBefore >= this.notAfter, ERROR.SIGN_ERROR, 54 "Require notBefore less than notAfter in validity!"); 55 } 56 getNotBefore()57 public Long getNotBefore() { 58 return notBefore; 59 } 60 setNotBefore(Long notBefore)61 public void setNotBefore(Long notBefore) { 62 this.notBefore = notBefore; 63 } 64 getNotAfter()65 public Long getNotAfter() { 66 return notAfter; 67 } 68 setNotAfter(Long notAfter)69 public void setNotAfter(Long notAfter) { 70 this.notAfter = notAfter; 71 } 72 } 73