Interface OAuthFlows
- All Superinterfaces:
OpenAPIObject
Represents an OAuth Flows Object.
-
Method Summary
Modifier and TypeMethodDescriptionConfiguration for the OAuth Authorization Code flow.Configuration for the OAuth Client Credentials flow.Configuration for the OAuth Implicit flow.Configuration for the OAuth Resource Owner Password flowMethods inherited from interface OpenAPIObject
getExtensions, getOpenAPIModel
-
Method Details
-
getImplicit
OAuthFlow getImplicit()Configuration for the OAuth Implicit flow. -
getPassword
OAuthFlow getPassword()Configuration for the OAuth Resource Owner Password flow -
getClientCredentials
OAuthFlow getClientCredentials()Configuration for the OAuth Client Credentials flow. Previously called application in OpenAPI 2.0. -
getAuthorizationCode
OAuthFlow getAuthorizationCode()Configuration for the OAuth Authorization Code flow. Previously called accessCode in OpenAPI 2.0.
-