Package io.micronaut.security.errors
Enum Class IssuingAnAccessTokenErrorCode
java.lang.Object
java.lang.Enum<IssuingAnAccessTokenErrorCode>
io.micronaut.security.errors.IssuingAnAccessTokenErrorCode
- All Implemented Interfaces:
ErrorCode
,Serializable
,Comparable<IssuingAnAccessTokenErrorCode>
,Constable
public enum IssuingAnAccessTokenErrorCode
extends Enum<IssuingAnAccessTokenErrorCode>
implements ErrorCode
A single ASCII error code as described in Issuing an Access Token - Error Response section of OAuth 2.0 spec.
- Since:
- 2.0.0
- Author:
- Sergio del Amo
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the enum constant of this class with the specified name.static IssuingAnAccessTokenErrorCode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INVALID_REQUEST
-
INVALID_CLIENT
-
INVALID_GRANT
-
UNAUTHORIZED_CLIENT
-
UNSUPPORTED_GRANT_TYPE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getErrorCode
- Specified by:
getErrorCode
in interfaceErrorCode
- Returns:
- A Single ASCII error code
-
getErrorCodeDescription
- Specified by:
getErrorCodeDescription
in interfaceErrorCode
- Returns:
- Error code description
-
toString
- Overrides:
toString
in classEnum<IssuingAnAccessTokenErrorCode>
- Returns:
- An errorCode code.
-