Name

X509CRLEntry

Synopsis

This class represents a single entry in an X509CRL. It contains the serial number and revocation date for a revoked certificate.

java.security.cert.X509CRLEntry

Figure 14-74. java.security.cert.X509CRLEntry

public abstract class X509CRLEntry implements X509Extension {
// Public Constructors
     public X509CRLEntry( );  
// Public Instance Methods
                  5.0  public javax.security.auth.x500.X500Principal 
        getCertificateIssuer( );     constant
     public abstract byte[ ] getEncoded( ) throws CRLException;  
     public abstract java.util.Date getRevocationDate( );  
     public abstract java.math.BigInteger getSerialNumber( );  
     public abstract boolean hasExtensions( );  
// Public Methods Overriding Object
     public boolean equals(Object other);  
     public int hashCode( );  
     public abstract String toString( );  
}

Returned By

X509CRL.getRevokedCertificate( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.