public static enum UserAuthorizer.ClientAuthenticationType extends Enum<UserAuthorizer.ClientAuthenticationType>
For more details, see RFC 7591.
| Enum Constant and Description |
|---|
CLIENT_SECRET_BASIC |
CLIENT_SECRET_POST |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static UserAuthorizer.ClientAuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAuthorizer.ClientAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAuthorizer.ClientAuthenticationType CLIENT_SECRET_POST
public static final UserAuthorizer.ClientAuthenticationType CLIENT_SECRET_BASIC
public static final UserAuthorizer.ClientAuthenticationType NONE
public static UserAuthorizer.ClientAuthenticationType[] values()
for (UserAuthorizer.ClientAuthenticationType c : UserAuthorizer.ClientAuthenticationType.values()) System.out.println(c);
public static UserAuthorizer.ClientAuthenticationType 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 © 2026 Google. All rights reserved.