public enum OCSPCheckingMode extends Enum<OCSPCheckingMode>
Enum Constant and Description |
---|
IF_AVAILABLE
Use OCSP for each certificate if a responder is available.
|
IGNORE
Do not use OCSP.
|
REQUIRE
Require, for each checked certificate, that at least one valid OCSP responder is defined and
that at least one responder of those defined returns a correct certificate status.
|
Modifier and Type | Method and Description |
---|---|
static OCSPCheckingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OCSPCheckingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OCSPCheckingMode REQUIRE
public static final OCSPCheckingMode IF_AVAILABLE
public static final OCSPCheckingMode IGNORE
public static OCSPCheckingMode[] values()
for (OCSPCheckingMode c : OCSPCheckingMode.values()) System.out.println(c);
public static OCSPCheckingMode 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.