- java.lang.Object
-
- java.security.cert.CertStoreSpi
-
public abstract class CertStoreSpi extends Object
CertStore
类的 ( SPI )。 所有CertStore
实现必须包含一个扩展此类的类(SPI类)(CertStoreSpi
),为构造函数提供类型为CertStoreParameters
的单个参数,并实现其所有方法。 通常,只能通过CertStore
类访问此类的实例。 有关详细信息,请参阅Java Cryptography Architecture。并发访问
所有
CertStoreSpi
对象的公共方法必须是线程安全的。 也就是说,多个线程可以在单个CertStoreSpi
对象(或多个)上同时调用这些方法,而不会产生任何不良影响。 例如,这允许CertPathBuilder
搜索CRL,同时搜索更多证书。简单的
CertStoreSpi
实现可能通过在engineGetCertificates
和engineGetCRLs
方法中添加synchronized
关键字来确保线程安全。 更复杂的可能允许真正的并发访问。- 从以下版本开始:
- 1.4
-
-
构造方法摘要
构造方法 构造器 描述 CertStoreSpi(CertStoreParameters params)
唯一的构造函数。
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 abstract Collection<? extends Certificate>
engineGetCertificates(CertSelector selector)
返回Collection
,其中Certificate
与指定的选择器匹配。abstract Collection<? extends CRL>
engineGetCRLs(CRLSelector selector)
返回Collection
的CRL
指定选择器匹配秒。
-
-
-
构造方法详细信息
-
CertStoreSpi
public CertStoreSpi(CertStoreParameters params) throws InvalidAlgorithmParameterException
唯一的构造函数。- 参数
-
params
- 初始化参数(可能是null
) - 异常
-
InvalidAlgorithmParameterException
- 如果初始化参数不适合此CertStoreSpi
-
-
方法详细信息
-
engineGetCertificates
public abstract Collection<? extends Certificate> engineGetCertificates(CertSelector selector) throws CertStoreException
返回Collection
,其中Certificate
与指定的选择器匹配。 如果没有Certificate
与选择器匹配,则返回空Collection
。对于某些
CertStore
类型,生成的Collection
可能不包含与选择器匹配的所有Certificate
。 例如,LDAPCertStore
可能无法搜索目录中的所有条目。 相反,它可能只搜索可能包含它正在寻找的Certificate
的条目。除非提供包含可用于查找证书的特定条件的非null
CertSelector
否则某些CertStore
实现(尤其是LDAPCertStore
)可能会抛出CertStoreException
。 发行人和/或主题名称是特别有用的标准。- 参数
-
selector
-一个CertSelector
用来选择Certificate
应该返回。 指定null
以返回所有Certificate
(如果支持)。 - 结果
-
Collection
ofCertificate
s与指定的选择器匹配(从不null
) - 异常
-
CertStoreException
- 如果发生异常
-
engineGetCRLs
public abstract Collection<? extends CRL> engineGetCRLs(CRLSelector selector) throws CertStoreException
返回与指定选择器匹配的Collection
的CRL
。 如果没有CRL
与选择器匹配,则返回空Collection
。对于某些
CertStore
类型,生成的Collection
可能不包含与选择器匹配的所有CRL
。 例如,LDAPCertStore
可能无法搜索目录中的所有条目。 相反,它可能只搜索可能包含它正在寻找的CRL
的条目。除非提供包含可用于查找CRL的特定条件的非null
CRLSelector
否则某些CertStore
实现(尤其是LDAPCertStore
)可能会抛出CertStoreException
。 颁发者名称和/或要检查的证书特别有用。- 参数
-
selector
-一个CRLSelector
用来选择CRL
应该返回。 指定null
以返回所有CRL
(如果支持)。 - 结果
-
Collection
ofCRL
s与指定的选择器匹配(从不null
) - 异常
-
CertStoreException
- 如果发生异常
-
-