public static enum Client.TokenEndpointAuthMethod extends Enum<Client.TokenEndpointAuthMethod>
Enum Constant and Description |
---|
CLIENT_SECRET_BASIC
Client secret basic type.
|
CLIENT_SECRET_POST
Client secret post type.
|
PRIVATE_KEY_JWT
Client secret basic type.
|
Modifier and Type | Method and Description |
---|---|
static Client.TokenEndpointAuthMethod |
fromString(String type)
Translates a string into a token endpoint auth method type.
|
String |
getType()
Gets the client token endpoint auth method type.
|
static Client.TokenEndpointAuthMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Client.TokenEndpointAuthMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client.TokenEndpointAuthMethod CLIENT_SECRET_POST
public static final Client.TokenEndpointAuthMethod CLIENT_SECRET_BASIC
public static final Client.TokenEndpointAuthMethod PRIVATE_KEY_JWT
public static Client.TokenEndpointAuthMethod[] values()
for (Client.TokenEndpointAuthMethod c : Client.TokenEndpointAuthMethod.values()) System.out.println(c);
public static Client.TokenEndpointAuthMethod valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getType()
public static Client.TokenEndpointAuthMethod fromString(String type)
type
- The string to translate into a token endpoint auth method.null
.Copyright © 2010–2025 Open Identity Platform Community. All rights reserved.