package org.bouncycastle.ocsp;

import org.bouncycastle.asn1.DERGeneralizedTime;
import org.bouncycastle.asn1.ocsp.RevokedInfo;
import org.bouncycastle.asn1.x509.CRLReason;

import java.text.ParseException;
import java.util.Date;

wrapper for the RevokedInfo object
/** * wrapper for the RevokedInfo object */
public class RevokedStatus implements CertificateStatus { RevokedInfo info; public RevokedStatus( RevokedInfo info) { this.info = info; } public RevokedStatus( Date revocationDate, int reason) { this.info = new RevokedInfo(new DERGeneralizedTime(revocationDate), new CRLReason(reason)); } public Date getRevocationTime() { try { return info.getRevocationTime().getDate(); } catch (ParseException e) { throw new IllegalStateException("ParseException:" + e.getMessage()); } } public boolean hasRevocationReason() { return (info.getRevocationReason() != null); }
return the revocation reason. Note: this field is optional, test for it with hasRevocationReason() first.
Throws:
Returns:the revocation reason value.
/** * return the revocation reason. Note: this field is optional, test for it * with hasRevocationReason() first. * @return the revocation reason value. * @exception IllegalStateException if a reason is asked for and none is avaliable */
public int getRevocationReason() { if (info.getRevocationReason() == null) { throw new IllegalStateException("attempt to get a reason where none is available"); } return info.getRevocationReason().getValue().intValue(); } }