public abstract class CertPathBuilderSpi extends Object
CertPathBuilder
类的 ( SPI )。
所有CertPathBuilder
实现都必须包括扩展此类( CertPathBuilderSpi
)并实现其所有方法的类(SPI类)。
一般来说,此类的实例只能通过CertPathBuilder
类访问。
有关详细信息,请参阅Java加密体系结构。
并发访问
不需要保护此类的实例,防止来自多个线程的并发访问。 需要同时访问单个CertPathBuilderSpi
实例的线程在彼此之间同步并在调用包装CertPathBuilder
对象之前提供必要的锁定。
然而,CertPathBuilderSpi的CertPathBuilderSpi
可能仍然会遇到并发问题,因为每个操作不同CertPathBuilderSpi
实例的多个线程不需要同步。
Constructor and Description |
---|
CertPathBuilderSpi()
默认构造函数。
|
Modifier and Type | Method and Description |
---|---|
abstract CertPathBuilderResult |
engineBuild(CertPathParameters params)
尝试使用指定的算法参数集构建认证路径。
|
CertPathChecker |
engineGetRevocationChecker()
返回
CertPathChecker ,这实现使用检查证书的吊销状态。
|
public abstract CertPathBuilderResult engineBuild(CertPathParameters params) throws CertPathBuilderException, InvalidAlgorithmParameterException
params
- 算法参数
CertPathBuilderException
- 如果构建器不能构造满足指定参数的认证路径
InvalidAlgorithmParameterException
- 如果指定的参数不适合此
CertPathBuilder
public CertPathChecker engineGetRevocationChecker()
CertPathChecker
,这实现使用检查证书的吊销状态。
PKIX实现返回PKIXRevocationChecker
类型的PKIXRevocationChecker
。
此方法的主要目的是允许调用者指定额外的输入参数和特定于撤销检查的选项。 见的类描述CertPathBuilder
的一个例子。
该方法被添加到Java Platform Standard Edition的1.8版本。 为了保持与现有服务提供商的向后兼容性,此方法不能是抽象的,默认情况下会抛出UnsupportedOperationException
。
CertPathChecker
,该实现用于检查证书的撤销状态
UnsupportedOperationException
- 如果不支持此方法
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.