public static final enum PKIXRevocationChecker.Option
extends Enum<PKIXRevocationChecker.Option>
java.lang.Object | ||
↳ | java.lang.Enum<java.security.cert.PKIXRevocationChecker.Option> | |
↳ | java.security.cert.PKIXRevocationChecker.Option |
可以为撤销检查机制指定各种撤销选项。
Enum values |
|
---|---|
PKIXRevocationChecker.Option |
NO_FALLBACK 禁用回退机制。 |
PKIXRevocationChecker.Option |
ONLY_END_ENTITY 只检查最终实体证书的撤销状态。 |
PKIXRevocationChecker.Option |
PREFER_CRLS 倾向于OSCP的CRL。 |
PKIXRevocationChecker.Option |
SOFT_FAIL 如果由于以下原因之一而无法确定吊销状态,请允许吊销检查成功:
|
Public methods |
|
---|---|
static PKIXRevocationChecker.Option |
valueOf(String name) |
static final Option[] |
values() |
Inherited methods |
|
---|---|
From class java.lang.Enum
|
|
From class java.lang.Object
|
|
From interface java.lang.Comparable
|
PKIXRevocationChecker.Option PREFER_CRLS
倾向于OSCP的CRL。 默认行为是偏好OCSP。 每个PKIX实施应记录其特定偏好规则和后备政策的更多细节。
PKIXRevocationChecker.Option SOFT_FAIL
如果由于以下原因之一而无法确定吊销状态,请允许吊销检查成功:
NO_FALLBACK
option is set, the revocation check is allowed to succeed only if both mechanisms fail under one of the conditions as stated above. Exceptions that cause the network errors are ignored but can be later retrieved by calling the
getSoftFailExceptions
method.
PKIXRevocationChecker.Option valueOf (String name)
Parameters | |
---|---|
name |
String
|
Returns | |
---|---|
PKIXRevocationChecker.Option |