public enum CrlCheckingMode extends Enum<CrlCheckingMode>
OpensslCertChainValidator
,
KeystoreCertChainValidator
Enum Constant and Description |
---|
IF_VALID
If a CRL for CA which issued a certificate being validated
is present and valid then the certificate must not be listed on the CRL.
|
IGNORE
CRL is not checked even if it exists.
|
REQUIRE
A CRL for CA which issued a certificate being validated
must be present and valid and the certificate must not be on the list.
|
Modifier and Type | Method and Description |
---|---|
static CrlCheckingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrlCheckingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrlCheckingMode REQUIRE
public static final CrlCheckingMode IF_VALID
public static final CrlCheckingMode IGNORE
public static CrlCheckingMode[] values()
for (CrlCheckingMode c : CrlCheckingMode.values()) System.out.println(c);
public static CrlCheckingMode 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 © 2012-2017 European Middleware Initiative. All Rights Reserved.