Package org.xipki.ca.sdk
Class RevokeCertRequestEntry
- java.lang.Object
-
- org.xipki.ca.sdk.RevokeCertRequestEntry
-
- All Implemented Interfaces:
org.xipki.util.cbor.CborEncodable
public class RevokeCertRequestEntry extends java.lang.Object implements org.xipki.util.cbor.CborEncodable- Since:
- 6.0.0
- Author:
- Lijun Liao (xipki)
-
-
Constructor Summary
Constructors Constructor Description RevokeCertRequestEntry(java.math.BigInteger serialNumber, org.xipki.security.CrlReason reason, java.lang.Long invalidityTime)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RevokeCertRequestEntrydecode(org.xipki.util.cbor.CborDecoder decoder)static RevokeCertRequestEntry[]decodeArray(org.xipki.util.cbor.CborDecoder decoder)voidencode(org.xipki.util.cbor.CborEncoder encoder)java.lang.LonggetInvalidityTime()org.xipki.security.CrlReasongetReason()java.math.BigIntegergetSerialNumber()
-
-
-
Method Detail
-
getSerialNumber
public java.math.BigInteger getSerialNumber()
-
getReason
public org.xipki.security.CrlReason getReason()
-
getInvalidityTime
public java.lang.Long getInvalidityTime()
-
encode
public void encode(org.xipki.util.cbor.CborEncoder encoder) throws org.xipki.util.exception.EncodeException- Specified by:
encodein interfaceorg.xipki.util.cbor.CborEncodable- Throws:
org.xipki.util.exception.EncodeException
-
decode
public static RevokeCertRequestEntry decode(org.xipki.util.cbor.CborDecoder decoder) throws org.xipki.util.exception.DecodeException
- Throws:
org.xipki.util.exception.DecodeException
-
decodeArray
public static RevokeCertRequestEntry[] decodeArray(org.xipki.util.cbor.CborDecoder decoder) throws org.xipki.util.exception.DecodeException
- Throws:
org.xipki.util.exception.DecodeException
-
-