• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
45     /**
46      * Validate attribute.
47      */
enforceValid()48     public void enforceValid() {
49         ValidateUtils.throwIfMatches(this.notBefore == 0L, ERROR.SIGN_ERROR, "Require notBefore in validity!");
50         ValidateUtils.throwIfMatches(this.notAfter == 0L, ERROR.SIGN_ERROR, "Require notAfter in validity!");
51         ValidateUtils.throwIfMatches(this.notBefore >= this.notAfter, ERROR.SIGN_ERROR,
52                 "Require notBefore less than notAfter in validity!");
53     }
54 
getNotBefore()55     public Long getNotBefore() {
56         return notBefore;
57     }
58 
setNotBefore(Long notBefore)59     public void setNotBefore(Long notBefore) {
60         this.notBefore = notBefore;
61     }
62 
getNotAfter()63     public Long getNotAfter() {
64         return notAfter;
65     }
66 
setNotAfter(Long notAfter)67     public void setNotAfter(Long notAfter) {
68         this.notAfter = notAfter;
69     }
70 }
71