public enum CredentialExpiredExceptionCause extends java.lang.Enum<CredentialExpiredExceptionCause>
CredentialExpiredException to specify the cause of the exception.| Enum Constant and Description |
|---|
CREDENTIAL_EXPIRED
The provided credentials have expired.
|
| Modifier and Type | Method and Description |
|---|---|
static CredentialExpiredExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CredentialExpiredExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialExpiredExceptionCause CREDENTIAL_EXPIRED
Resolution: The application should update the HSM user credentials.
public static CredentialExpiredExceptionCause[] values()
for (CredentialExpiredExceptionCause c : CredentialExpiredExceptionCause.values()) System.out.println(c);
public static CredentialExpiredExceptionCause 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 null