Interface OAuth2ServiceEndpointsProvider
- All Known Implementing Classes:
XsuaaDefaultEndpoints
public interface OAuth2ServiceEndpointsProvider
-
Method Summary
Modifier and TypeMethodDescriptionReturns authorize endpoint URI.Returns Jwt Key Set URI (JWKS) as specified in /.well-known/openid-configuration.Returns token endpoint URI.
-
Method Details
-
getTokenEndpoint
URI getTokenEndpoint()Returns token endpoint URI.- Returns:
- token endpoint, e.g.
https://oauth.server.com/oauth/token
-
getAuthorizeEndpoint
URI getAuthorizeEndpoint()Returns authorize endpoint URI.- Returns:
- authorize endpoint, e.g.
https://oauth.server.com/oauth/authorize
-
getJwksUri
URI getJwksUri()Returns Jwt Key Set URI (JWKS) as specified in /.well-known/openid-configuration.- Returns:
- jwks_uri , e.g.
https://oauth.server.com/token_keys
-