aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CRL.java
blob: 2eb219e075eaa7fbbf720dec5efe4c256c765b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package java.security.cert;

public abstract class CRL
{
    private String type;

    protected CRL(String type)
    {
        this.type = type;
    }

    public final String getType()
    {
        return type;
    }

    public abstract boolean isRevoked(Certificate cert);
    public abstract String toString();
}