public static enum Client.PublicKeySelector extends Enum<Client.PublicKeySelector>
Enum Constant and Description |
---|
JWKS
JWKs
|
JWKS_URI
JWKs URI
|
X509
X509
|
Modifier and Type | Method and Description |
---|---|
static Client.PublicKeySelector |
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.PublicKeySelector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Client.PublicKeySelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client.PublicKeySelector JWKS_URI
public static final Client.PublicKeySelector JWKS
public static final Client.PublicKeySelector X509
public static Client.PublicKeySelector[] values()
for (Client.PublicKeySelector c : Client.PublicKeySelector.values()) System.out.println(c);
public static Client.PublicKeySelector 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.PublicKeySelector 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.