public enum NotificationWarning extends java.lang.Enum<NotificationWarning>
| Enum Constant and Description |
|---|
CRL_TRUST_NOT_VERIFIED
A local CRL was used for revocationcheck but it could not be verified on reliability.
|
OCSP_NOT_EMBEDDED
An embedded OCSP was expected in the message but not found.
|
SIGNING_TIME_EXPIRED
Expired Signing Time.
|
SIGNING_TIME_MISSING
No Signing Time.
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationWarning |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationWarning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationWarning SIGNING_TIME_MISSING
public static final NotificationWarning SIGNING_TIME_EXPIRED
public static final NotificationWarning OCSP_NOT_EMBEDDED
public static final NotificationWarning CRL_TRUST_NOT_VERIFIED
public static NotificationWarning[] values()
for (NotificationWarning c : NotificationWarning.values()) System.out.println(c);
public static NotificationWarning 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.