Package org.bouncycastle.asn1.cmp
Class RevAnnContent
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.cmp.RevAnnContent
-
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class RevAnnContent extends org.bouncycastle.asn1.ASN1Object
-
-
Constructor Summary
Constructors Constructor Description RevAnnContent(PKIStatus status, CertId certId, org.bouncycastle.asn1.ASN1GeneralizedTime willBeRevokedAt, org.bouncycastle.asn1.ASN1GeneralizedTime badSinceDate)
RevAnnContent(PKIStatus status, CertId certId, org.bouncycastle.asn1.ASN1GeneralizedTime willBeRevokedAt, org.bouncycastle.asn1.ASN1GeneralizedTime badSinceDate, org.bouncycastle.asn1.x509.Extensions crlDetails)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1GeneralizedTime
getBadSinceDate()
CertId
getCertId()
org.bouncycastle.asn1.x509.Extensions
getCrlDetails()
static RevAnnContent
getInstance(java.lang.Object o)
PKIStatus
getStatus()
org.bouncycastle.asn1.ASN1GeneralizedTime
getWillBeRevokedAt()
org.bouncycastle.asn1.ASN1Primitive
toASN1Primitive()
RevAnnContent ::= SEQUENCE { status PKIStatus, certId CertId, willBeRevokedAt GeneralizedTime, badSinceDate GeneralizedTime, crlDetails Extensions OPTIONAL -- extra CRL details (e.g., crl number, reason, location, etc.) }
-
-
-
Method Detail
-
getInstance
public static RevAnnContent getInstance(java.lang.Object o)
-
getStatus
public PKIStatus getStatus()
-
getCertId
public CertId getCertId()
-
getWillBeRevokedAt
public org.bouncycastle.asn1.ASN1GeneralizedTime getWillBeRevokedAt()
-
getBadSinceDate
public org.bouncycastle.asn1.ASN1GeneralizedTime getBadSinceDate()
-
getCrlDetails
public org.bouncycastle.asn1.x509.Extensions getCrlDetails()
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
RevAnnContent ::= SEQUENCE { status PKIStatus, certId CertId, willBeRevokedAt GeneralizedTime, badSinceDate GeneralizedTime, crlDetails Extensions OPTIONAL -- extra CRL details (e.g., crl number, reason, location, etc.) }
- Specified by:
toASN1Primitive
in interfaceorg.bouncycastle.asn1.ASN1Encodable
- Specified by:
toASN1Primitive
in classorg.bouncycastle.asn1.ASN1Object
- Returns:
- a basic ASN.1 object representation.
-
-