public enum OIDCClientAuth extends Enum<OIDCClientAuth>
| Enum Constant and Description |
|---|
CLIENT_SECRET_BASIC |
CLIENT_SECRET_JWT |
CLIENT_SECRET_POST |
PRIVATE_KEY_JWT |
| Modifier and Type | Method and Description |
|---|---|
static OIDCClientAuth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OIDCClientAuth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OIDCClientAuth CLIENT_SECRET_POST
public static final OIDCClientAuth CLIENT_SECRET_BASIC
public static final OIDCClientAuth CLIENT_SECRET_JWT
public static final OIDCClientAuth PRIVATE_KEY_JWT
public static OIDCClientAuth[] values()
for (OIDCClientAuth c : OIDCClientAuth.values()) System.out.println(c);
public static OIDCClientAuth 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 nullCopyright © 2022 iland Internet Solutions, Corp. All rights reserved.