Package org.xipki.ocsp.server.store
Class CrlInfo
- java.lang.Object
-
- org.xipki.ocsp.server.store.CrlInfo
-
public class CrlInfo extends Object
CRL information.- Since:
- 2.2.0
- Author:
- Lijun Liao (xipki)
-
-
Field Summary
Fields Modifier and Type Field Description static StringBASE_CRL_NUMBERstatic StringCRL_IDstatic StringCRL_NUMBERstatic StringNEXT_UPDATEstatic StringTHIS_UPDATE
-
Constructor Summary
Constructors Constructor Description CrlInfo(String conf)CrlInfo(BigInteger crlNumber, BigInteger baseCrlNumber, Instant thisUpdate, Instant nextUpdate, org.bouncycastle.asn1.ocsp.CrlID crlId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)BigIntegergetBaseCrlNumber()org.bouncycastle.asn1.ocsp.CrlIDgetCrlId()BigIntegergetCrlNumber()StringgetEncoded()InstantgetNextUpdate()InstantgetThisUpdate()inthashCode()
-
-
-
Field Detail
-
BASE_CRL_NUMBER
public static final String BASE_CRL_NUMBER
- See Also:
- Constant Field Values
-
CRL_ID
public static final String CRL_ID
- See Also:
- Constant Field Values
-
CRL_NUMBER
public static final String CRL_NUMBER
- See Also:
- Constant Field Values
-
NEXT_UPDATE
public static final String NEXT_UPDATE
- See Also:
- Constant Field Values
-
THIS_UPDATE
public static final String THIS_UPDATE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CrlInfo
public CrlInfo(String conf)
-
CrlInfo
public CrlInfo(BigInteger crlNumber, BigInteger baseCrlNumber, Instant thisUpdate, Instant nextUpdate, org.bouncycastle.asn1.ocsp.CrlID crlId)
-
-
Method Detail
-
getEncoded
public String getEncoded()
-
getCrlNumber
public BigInteger getCrlNumber()
-
getBaseCrlNumber
public BigInteger getBaseCrlNumber()
-
getThisUpdate
public Instant getThisUpdate()
-
getNextUpdate
public Instant getNextUpdate()
-
getCrlId
public org.bouncycastle.asn1.ocsp.CrlID getCrlId()
-
-