public static enum DefaultCertificateValidator.IgnoredChecks extends Enum<DefaultCertificateValidator.IgnoredChecks>
| Enum Constant and Description |
|---|
IGNORE_CA_MISSING_CRL
If set, a CA Cert is not required to have a matching CRL.
|
IGNORE_KEYUSAGE_CHECKS
If set, ignores keyUsage checks from a Cert.
|
| Modifier and Type | Method and Description |
|---|---|
static DefaultCertificateValidator.IgnoredChecks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultCertificateValidator.IgnoredChecks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultCertificateValidator.IgnoredChecks IGNORE_CA_MISSING_CRL
public static final DefaultCertificateValidator.IgnoredChecks IGNORE_KEYUSAGE_CHECKS
public static DefaultCertificateValidator.IgnoredChecks[] values()
for (DefaultCertificateValidator.IgnoredChecks c : DefaultCertificateValidator.IgnoredChecks.values()) System.out.println(c);
public static DefaultCertificateValidator.IgnoredChecks 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 nullCopyright © 2026. All rights reserved.