Interface OAuthGrantTypeVisitor
public interface OAuthGrantTypeVisitor
Implementation of the visitor pattern for
OAuthGrantType implementations- Since:
- 1.2.1
-
Method Summary
Modifier and TypeMethodDescriptionvoidvisit(AuthorizationCodeGrantType grantType) visit a grant type for Authorization Codevoidvisit(ClientCredentialsGrantType grantType) visit a grant type for Client Credentialsvoidvisit(PlatformManagedOAuthGrantType grantType) visit a grant type for Platform Managed Connections
-
Method Details
-
visit
visit a grant type for Authorization Code- Parameters:
grantType- the grant type
-
visit
visit a grant type for Client Credentials- Parameters:
grantType- the grant type
-
visit
visit a grant type for Platform Managed ConnectionsPlatform Managed OAuth is an experimental feature. It will only be enabled on selected environments and scenarios. Backwards compatibility is not guaranteed.
- Parameters:
grantType- the grant type- Since:
- 1.3.0
-