|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OCSPCheckingMode>
eu.emi.security.authn.x509.OCSPCheckingMode
public enum OCSPCheckingMode
Defines On-line Certificate Status Protocol usage mode.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OCSPCheckingMode REQUIRE
public static final OCSPCheckingMode IF_AVAILABLE
public static final OCSPCheckingMode IGNORE
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |