@BetaApi public abstract static class GoogleCredentialsProvider.Builder extends Object
| Constructor and Description |
|---|
Builder() |
| Modifier and Type | Method and Description |
|---|---|
GoogleCredentialsProvider |
build() |
abstract List<String> |
getJwtEnabledScopes()
The JWT enable scopes previously provided.
|
abstract List<String> |
getScopesToApply()
The scopes previously provided.
|
abstract GoogleCredentialsProvider.Builder |
setJwtEnabledScopes(List<String> val)
Sets the scopes that are compatible with JWT tokens.
|
abstract GoogleCredentialsProvider.Builder |
setScopesToApply(List<String> val)
Sets the scopes to apply to the credentials that are acquired from Application Default
Credentials, before the credentials are sent to the service.
|
public abstract GoogleCredentialsProvider.Builder setScopesToApply(List<String> val)
@BetaApi public abstract GoogleCredentialsProvider.Builder setJwtEnabledScopes(List<String> val)
JWT Tokens don't support scopes, they only support audiences. Audiences allow access to
the entire service as opposed some subset (ie. access can't be restricted to use the scope
https://www.googleapis.com/auth/bigtable.data.readonly). A service client can opt-in
to using JWT tokens by specifying which scopes encompass the entire service. If any of those
scopes are present when the client is using ServiceAccountCredentials, then JWT
tokens will be used for authentication.
@BetaApi public abstract List<String> getJwtEnabledScopes()
public GoogleCredentialsProvider build()