public static enum AccessTokenProvider.AccessTokenType extends Enum<AccessTokenProvider.AccessTokenType>
| Enum Constant and Description |
|---|
DOWNSCOPED
A downscoped access token generated for each request.
|
GENERIC
The same access token generated for all the GCS requests.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessTokenProvider.AccessTokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessTokenProvider.AccessTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessTokenProvider.AccessTokenType GENERIC
public static final AccessTokenProvider.AccessTokenType DOWNSCOPED
public static AccessTokenProvider.AccessTokenType[] values()
for (AccessTokenProvider.AccessTokenType c : AccessTokenProvider.AccessTokenType.values()) System.out.println(c);
public static AccessTokenProvider.AccessTokenType 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 © 2024. All rights reserved.