Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CertStatus.java « provider « jce « bouncycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba3da16582c546683cce91af51e2fb5b30c29867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package org.bouncycastle.jce.provider;

import java.util.Date;

class CertStatus
{
    public static final int UNREVOKED = 11;

    public static final int UNDETERMINED = 12;

    int certStatus = UNREVOKED;

    Date revocationDate = null;

    /**
     * @return Returns the revocationDate.
     */
    public Date getRevocationDate()
    {
        return revocationDate;
    }

    /**
     * @param revocationDate The revocationDate to set.
     */
    public void setRevocationDate(Date revocationDate)
    {
        this.revocationDate = revocationDate;
    }

    /**
     * @return Returns the certStatus.
     */
    public int getCertStatus()
    {
        return certStatus;
    }

    /**
     * @param certStatus The certStatus to set.
     */
    public void setCertStatus(int certStatus)
    {
        this.certStatus = certStatus;
    }
}