Package de.adorsys.psd2.model
Enum MessageCode401LTB
- java.lang.Object
-
- java.lang.Enum<MessageCode401LTB>
-
- de.adorsys.psd2.model.MessageCode401LTB
-
- All Implemented Interfaces:
Serializable,Comparable<MessageCode401LTB>
public enum MessageCode401LTB extends Enum<MessageCode401LTB>
Message codes defined for Trusted Beneficiaries for HTTP Error code 401 (UNAUTHORIZED).
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageCode401LTBfromValue(String text)StringtoString()static MessageCode401LTBvalueOf(String name)Returns the enum constant of this type with the specified name.static MessageCode401LTB[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CERTIFICATE_INVALID
public static final MessageCode401LTB CERTIFICATE_INVALID
-
ROLE_INVALID
public static final MessageCode401LTB ROLE_INVALID
-
CERTIFICATE_EXPIRED
public static final MessageCode401LTB CERTIFICATE_EXPIRED
-
CERTIFICATE_BLOCKED
public static final MessageCode401LTB CERTIFICATE_BLOCKED
-
CERTIFICATE_REVOKE
public static final MessageCode401LTB CERTIFICATE_REVOKE
-
CERTIFICATE_MISSING
public static final MessageCode401LTB CERTIFICATE_MISSING
-
SIGNATURE_INVALID
public static final MessageCode401LTB SIGNATURE_INVALID
-
SIGNATURE_MISSING
public static final MessageCode401LTB SIGNATURE_MISSING
-
CORPORATE_ID_INVALID
public static final MessageCode401LTB CORPORATE_ID_INVALID
-
PSU_CREDENTIALS_INVALID
public static final MessageCode401LTB PSU_CREDENTIALS_INVALID
-
CONSENT_INVALID
public static final MessageCode401LTB CONSENT_INVALID
-
CONSENT_EXPIRED
public static final MessageCode401LTB CONSENT_EXPIRED
-
TOKEN_UNKNOWN
public static final MessageCode401LTB TOKEN_UNKNOWN
-
TOKEN_INVALID
public static final MessageCode401LTB TOKEN_INVALID
-
TOKEN_EXPIRED
public static final MessageCode401LTB TOKEN_EXPIRED
-
-
Method Detail
-
values
public static MessageCode401LTB[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MessageCode401LTB c : MessageCode401LTB.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageCode401LTB valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<MessageCode401LTB>
-
fromValue
public static MessageCode401LTB fromValue(String text)
-
-