public static enum PKIXRevocationChecker.Option extends Enum<PKIXRevocationChecker.Option>
Enum Constant and Description |
---|
NO_FALLBACK
Disable the fallback mechanism.
|
ONLY_END_ENTITY
Only check the revocation status of end-entity certificates.
|
PREFER_CRLS
Prefer CRLs to OSCP.
|
SOFT_FAIL
Allow revocation check to succeed if the revocation status cannot be
determined for one of the following reasons:
The CRL or OCSP response cannot be obtained because of a
network error.
|
Modifier and Type | Method and Description |
---|---|
static PKIXRevocationChecker.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PKIXRevocationChecker.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PKIXRevocationChecker.Option ONLY_END_ENTITY
public static final PKIXRevocationChecker.Option PREFER_CRLS
public static final PKIXRevocationChecker.Option NO_FALLBACK
public static final 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.public static PKIXRevocationChecker.Option[] values()
for (PKIXRevocationChecker.Option c : PKIXRevocationChecker.Option.values()) System.out.println(c);
public static PKIXRevocationChecker.Option valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null 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, 2016, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.