Most visited

Recently visited

Added in API level 1

CRLSelector

public interface CRLSelector
implements Cloneable

java.security.cert.CRLSelector
Known Indirect Subclasses


选择器定义一组选择CRL的标准。 实现此接口的类通常用于指定CRL检索CertStore

并发访问

除非另有说明,否则此接口中定义的方法不是线程安全的。 需要同时访问单个对象的多个线程应该自己同步并提供必要的锁定。 每个操作单独对象的多个线程不需要同步。

也可以看看:

Summary

Public methods

abstract Object clone()

制作这个 CRLSelector的副本。

abstract boolean match(CRL crl)

决定是否应该选择 CRL

Public methods

clone

Added in API level 1
Object clone ()

制作这个CRLSelector的副本。 副本的更改不会影响原件,反之亦然。

Returns
Object a copy of this CRLSelector

match

Added in API level 1
boolean match (CRL crl)

决定是否应该选择 CRL

Parameters
crl CRL: the CRL to be checked
Returns
boolean true if the CRL should be selected, false otherwise

Hooray!