All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.security.xsuaa.client.OAuth2ServiceEndpointsProvider Maven / Gradle / Ivy

There is a newer version: 3.5.6
Show newest version
/**
 * SPDX-FileCopyrightText: 2018-2023 SAP SE or an SAP affiliate company and Cloud Security Client Java contributors
 * 

* SPDX-License-Identifier: Apache-2.0 */ package com.sap.cloud.security.xsuaa.client; import java.net.URI; public interface OAuth2ServiceEndpointsProvider { /** * Returns token endpoint URI. * * @return token endpoint, e.g. {@code https://oauth.server.com/oauth/token} */ URI getTokenEndpoint(); /** * Returns authorize endpoint URI. * * @return authorize endpoint, e.g. {@code https://oauth.server.com/oauth/authorize} */ URI getAuthorizeEndpoint(); /** * Returns Jwt Key Set URI (JWKS) as specified in /.well-known/openid-configuration. * * @return jwks_uri , e.g. {@code https://oauth.server.com/token_keys} */ URI getJwksUri(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy