Name

CRLSelector

Synopsis

This interface defines an API for determining whether a CRL object meets some criteria. Implementations are used to specify critera by which a CRL objects should be selected from a CertStore. The match( ) method should examine the CRL it is passed and return true if it “matches” based on whatever criteria the implementation defines. See X509CRLSelector for an implementation that works with X.509 certificates. See CertSelector for a similar interface for use when selecting Certificate objects from a CertStore.

java.security.cert.CRLSelector

Figure 14-64. java.security.cert.CRLSelector

public interface CRLSelector extends Cloneable {
// Public Instance Methods
     Object clone( );  
     boolean match(CRL crl);  
}

Implementations

X509CRLSelector

Passed To

CertStore.getCRLs( ), CertStoreSpi.engineGetCRLs( )

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.