Package io.quarkus.oidc.common
Enum Class OidcEndpoint.Type
- All Implemented Interfaces:
Serializable,Comparable<OidcEndpoint.Type>,Constable
- Enclosing class:
OidcEndpoint
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionApplies to OIDC client registration requestsApplies to OIDC discovery requestsApplies to OIDC token introspection requestsApplies to OIDC JSON Web Key Set endpoint requestsApplies to requests to dynamically registered OIDC client endpointsApplies to OIDC token endpoint requestsApplies to OIDC token revocation endpoint requestsApplies to OIDC UserInfo endpoint requests -
Method Summary
Modifier and TypeMethodDescriptionstatic OidcEndpoint.TypeReturns the enum constant of this class with the specified name.static OidcEndpoint.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
-
DISCOVERY
Applies to OIDC discovery requests -
TOKEN
Applies to OIDC token endpoint requests -
TOKEN_REVOCATION
Applies to OIDC token revocation endpoint requests -
INTROSPECTION
Applies to OIDC token introspection requests -
JWKS
Applies to OIDC JSON Web Key Set endpoint requests -
USERINFO
Applies to OIDC UserInfo endpoint requests -
CLIENT_REGISTRATION
Applies to OIDC client registration requests -
REGISTERED_CLIENT
Applies to requests to dynamically registered OIDC client endpoints
-
-
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
-