static OAuth2CredentialSource.Builder |
OAuth2CredentialSource.builder(URL tokenEndpointUrl) |
Deprecated.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.clientCredentials(String id,
String secret) |
Configure OAuth2 Client Credentials Grant Type as defined by the OAuth2 specification.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.grantScopes(String scopes) |
The scopes to grant access.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.maskedClientCredentials(String id,
String maskedSecret,
String algorithm,
String initialKeyMaterial,
int iterationCount,
String salt,
String initializationVector) |
Configure OAuth2 Masked Client Credentials Grant Type as defined by the OAuth2 specification.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.useResourceOwnerMaskedPassword(String userName,
String maskedPassword,
String algorithm,
String initialKeyMaterial,
int iterationCount,
String salt,
String initializationVector) |
Configure OAuth2 Resource Owner Masked Password Grant Type as defined by the OAuth2 specification.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.useResourceOwnerPassword(String userName,
String password) |
Configure OAuth2 Resource Owner Password Grant Type as defined by the OAuth2 specification.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.useSslContext(SSLContext sslContext) |
TThe SSLContext to be used in case connections to remote server require TLS/HTTPS.
|
OAuth2CredentialSource.Builder |
OAuth2CredentialSource.Builder.useSslHostnameVerifier(HostnameVerifier hostnameVerifier) |
TThe HostnameVerifier to be used in case connections to remote server require TLS/HTTPS.
|