public enum OCSPOption extends java.lang.Enum<OCSPOption>
| Enum Constant and Description |
|---|
CERT_STORE
collection of local CRLs and certificates to use for revocation checks.
|
CLOCK_SKEW
Acceptable difference (in millis) in time calculations to prevent clock synchronisation issues.
|
CONNECTION_TIMEOUT
Maximum time (in millis) to setup a connection.
|
CONNECTION_USER_INTERACTION
Flag (true/false) to allow for user interaction.
|
INJECT_RESPONSE
Flag (true/false) to add OSCPResponse to sealed message.
|
OCSP_URI
Endpoint of OCSP Responder.
|
READ_TIMEOUT
Maximum time (in millis) to wait for a response.
|
TRUST_STORE
Truststore with (root) certificates acceptable for OCSP Responders.
|
| Modifier and Type | Method and Description |
|---|---|
static OCSPOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OCSPOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OCSPOption OCSP_URI
public static final OCSPOption TRUST_STORE
public static final OCSPOption CERT_STORE
public static final OCSPOption INJECT_RESPONSE
public static final OCSPOption CLOCK_SKEW
public static final OCSPOption CONNECTION_TIMEOUT
public static final OCSPOption READ_TIMEOUT
public static final OCSPOption CONNECTION_USER_INTERACTION
public static OCSPOption[] values()
for (OCSPOption c : OCSPOption.values()) System.out.println(c);
public static OCSPOption valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2025 eHealth. All rights reserved.