Uses of Class
com.sap.cloud.security.xsuaa.client.OAuth2TokenResponse
Packages that use OAuth2TokenResponse
-
Uses of OAuth2TokenResponse in com.sap.cloud.security.xsuaa.client
Methods in com.sap.cloud.security.xsuaa.client that return OAuth2TokenResponseModifier and TypeMethodDescriptionprotected abstract OAuth2TokenResponseAbstractOAuth2TokenService.requestAccessToken(URI tokenEndpointUri, HttpHeaders headers, Map<String, String> parameters) Implements the HTTP client specific logic to perform an HTTP request and handle the response.protected OAuth2TokenResponseDefaultOAuth2TokenService.requestAccessToken(URI tokenEndpointUri, HttpHeaders headers, Map<String, String> parameters) protected OAuth2TokenResponseXsuaaOAuth2TokenService.requestAccessToken(URI tokenEndpointUri, HttpHeaders headers, Map<String, String> parameters) AbstractOAuth2TokenService.retrieveAccessTokenViaClientCredentialsGrant(URI tokenEndpointUri, ClientIdentity clientIdentity, String zoneId, String subdomain, Map<String, String> optionalParameters, boolean disableCacheForRequest) OAuth2TokenService.retrieveAccessTokenViaClientCredentialsGrant(URI tokenEndpointUri, ClientIdentity clientIdentity, String zoneId, String subdomain, Map<String, String> optionalParameters, boolean disableCacheForRequest) Requests access token from OAuth Server with client credentials.AbstractOAuth2TokenService.retrieveAccessTokenViaJwtBearerTokenGrant(URI tokenEndpoint, ClientIdentity clientIdentity, String token, String subdomain, Map<String, String> optionalParameters, boolean disableCacheForRequest) AbstractOAuth2TokenService.retrieveAccessTokenViaJwtBearerTokenGrant(URI tokenEndpoint, ClientIdentity clientIdentity, String token, Map<String, String> optionalParameters, boolean disableCacheForRequest, String zoneId) OAuth2TokenService.retrieveAccessTokenViaJwtBearerTokenGrant(URI tokenEndpointUri, ClientIdentity clientIdentity, String token, String subdomain, Map<String, String> optionalParameters, boolean disableCacheForRequest) OAuth2TokenService.retrieveAccessTokenViaJwtBearerTokenGrant(URI tokenEndpointUri, ClientIdentity clientIdentity, String token, Map<String, String> optionalParameters, boolean disableCache, String xZid) AbstractOAuth2TokenService.retrieveAccessTokenViaPasswordGrant(URI tokenEndpoint, ClientIdentity clientIdentity, String username, String password, String subdomain, Map<String, String> optionalParameters, boolean disableCacheForRequest) OAuth2TokenService.retrieveAccessTokenViaPasswordGrant(URI tokenEndpointUri, ClientIdentity clientIdentity, String username, String password, String subdomain, Map<String, String> optionalParameters, boolean disableCacheForRequest) Requests access token from OAuth Server with user / password.AbstractOAuth2TokenService.retrieveAccessTokenViaRefreshToken(URI tokenEndpointUri, ClientIdentity clientIdentity, String refreshToken, String subdomain, boolean disableCacheForRequest) OAuth2TokenService.retrieveAccessTokenViaRefreshToken(URI tokenEndpointUri, ClientIdentity clientIdentity, String refreshToken, String subdomain, boolean disableCacheForRequest) Requests access token from OAuth Server with refresh-token. -
Uses of OAuth2TokenResponse in com.sap.cloud.security.xsuaa.tokenflows
Methods in com.sap.cloud.security.xsuaa.tokenflows that return OAuth2TokenResponseModifier and TypeMethodDescriptionClientCredentialsTokenFlow.execute()Executes the token flow and returns a JWT token from XSUAA.JwtBearerTokenFlow.execute()Executes this flow against the XSUAA endpoint.PasswordTokenFlow.execute()Executes this flow against the XSUAA endpoint.RefreshTokenFlow.execute()Executes the refresh token flow against XSUAA.