Uses of Class
netscape.security.x509.RevokedCertificate
-
Packages that use RevokedCertificate Package Description com.netscape.certsrv.ca com.netscape.certsrv.dbs.crldb netscape.security.x509 -
-
Uses of RevokedCertificate in com.netscape.certsrv.ca
Methods in com.netscape.certsrv.ca that return types with arguments of type RevokedCertificate Modifier and Type Method Description java.util.Set<RevokedCertificate>
ICRLIssuingPoint. getRevokedCertificates(int start, int end)
Returns all the revoked certificates from the CRL cache. -
Uses of RevokedCertificate in com.netscape.certsrv.dbs.crldb
Methods in com.netscape.certsrv.dbs.crldb that return types with arguments of type RevokedCertificate Modifier and Type Method Description java.util.Hashtable<java.math.BigInteger,RevokedCertificate>
ICRLIssuingPointRecord. getCRLCache()
java.util.Hashtable<java.math.BigInteger,RevokedCertificate>
ICRLIssuingPointRecord. getCRLCacheNoClone()
Retrieves cache information about CRL.java.util.Hashtable<java.math.BigInteger,RevokedCertificate>
ICRLIssuingPointRecord. getExpiredCerts()
Retrieves cache information about expired certificates.java.util.Hashtable<java.math.BigInteger,RevokedCertificate>
ICRLIssuingPointRecord. getRevokedCerts()
Retrieves cache information about revoked certificates.java.util.Hashtable<java.math.BigInteger,RevokedCertificate>
ICRLIssuingPointRecord. getUnrevokedCerts()
Retrieves cache information about certificates released from hold.Method parameters in com.netscape.certsrv.dbs.crldb with type arguments of type RevokedCertificate Modifier and Type Method Description void
ICRLRepository. updateCRLCache(java.lang.String id, java.lang.Long crlSize, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> revokedCerts, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> unrevokedCerts, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> expiredCerts)
Updates CRL issuing point record.void
ICRLRepository. updateCRLIssuingPointRecord(java.lang.String id, byte[] newCRL, java.util.Date thisUpdate, java.util.Date nextUpdate, java.math.BigInteger crlNumber, java.lang.Long crlSize, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> revokedCerts, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> unrevokedCerts, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> expiredCerts)
Updates CRL issuing point record.void
ICRLRepository. updateExpiredCerts(java.lang.String id, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> expiredCerts)
Updates CRL issuing point record.void
ICRLRepository. updateRevokedCerts(java.lang.String id, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> revokedCerts, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> unrevokedCerts)
Updates CRL issuing point record. -
Uses of RevokedCertificate in netscape.security.x509
Subclasses of RevokedCertificate in netscape.security.x509 Modifier and Type Class Description class
RevokedCertImpl
Abstract class for a revoked certificate in a CRL.Methods in netscape.security.x509 that return types with arguments of type RevokedCertificate Modifier and Type Method Description java.util.Hashtable<java.math.BigInteger,RevokedCertificate>
X509CRLImpl. getListOfRevokedCertificates()
java.util.Set<RevokedCertificate>
X509CRLImpl. getRevokedCertificates()
Gets all the revoked certificates from the CRL.Constructors in netscape.security.x509 with parameters of type RevokedCertificate Constructor Description X509CRLImpl(X500Name issuer, java.util.Date thisDate, java.util.Date nextDate, RevokedCertificate[] badCerts)
CRL constructor, revoked certs, no extensions.X509CRLImpl(X500Name issuer, java.util.Date thisDate, java.util.Date nextDate, RevokedCertificate[] badCerts, CRLExtensions crlExts)
CRL constructor, revoked certs and extensions.X509CRLImpl(X500Name issuer, AlgorithmId algId, java.util.Date thisDate, java.util.Date nextDate, RevokedCertificate[] badCerts, CRLExtensions crlExts)
CRL constructor, revoked certs and extensions.Constructor parameters in netscape.security.x509 with type arguments of type RevokedCertificate Constructor Description X509CRLImpl(X500Name issuer, AlgorithmId algId, java.util.Date thisDate, java.util.Date nextDate, java.util.Hashtable<java.math.BigInteger,RevokedCertificate> badCerts, CRLExtensions crlExts)
CRL constructor, revoked certs and extensions.
-