Enum Class OidcClientCommonConfig.Credentials.Secret.Method
java.lang.Object
java.lang.Enum<OidcClientCommonConfig.Credentials.Secret.Method>
io.quarkus.oidc.common.runtime.config.OidcClientCommonConfig.Credentials.Secret.Method
- All Implemented Interfaces:
Serializable,Comparable<OidcClientCommonConfig.Credentials.Secret.Method>,Constable
- Enclosing interface:
OidcClientCommonConfig.Credentials.Secret
public static enum OidcClientCommonConfig.Credentials.Secret.Method
extends Enum<OidcClientCommonConfig.Credentials.Secret.Method>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription`client_secret_basic` (default): The client id and secret are submitted with the HTTP Authorization Basic scheme.`client_secret_post`: The client id and secret are submitted as the `client_id` and `client_secret` form parameters.`client_secret_jwt`: The client id and generated JWT secret are submitted as the `client_id` and `client_secret` form parameters.client id and secret are submitted as HTTP query parameters. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BASIC
`client_secret_basic` (default): The client id and secret are submitted with the HTTP Authorization Basic scheme. -
POST
`client_secret_post`: The client id and secret are submitted as the `client_id` and `client_secret` form parameters. -
POST_JWT
`client_secret_jwt`: The client id and generated JWT secret are submitted as the `client_id` and `client_secret` form parameters. -
QUERY
client id and secret are submitted as HTTP query parameters. This option is only supported by the OIDC extension.
-
-
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
-