Class AadAuthorizationServerEndpoints
- java.lang.Object
-
- com.azure.spring.cloud.autoconfigure.aad.properties.AadAuthorizationServerEndpoints
-
public class AadAuthorizationServerEndpoints extends Object
Used to get endpoints for Microsoft Identity authorization server.
-
-
Constructor Summary
Constructors Constructor Description AadAuthorizationServerEndpoints(String baseUri, String tenantId)Creates a new instance ofAadAuthorizationServerEndpoints.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthorizationEndpoint()Gets the authorization endpoint.StringgetBaseUri()Gets the base URI.StringgetEndSessionEndpoint()Gets the end session endpoint.StringgetJwkSetEndpoint()Gets the JWK set endpoint.StringgetTokenEndpoint()Gets the token endpoint.
-
-
-
Constructor Detail
-
AadAuthorizationServerEndpoints
public AadAuthorizationServerEndpoints(String baseUri, String tenantId)
Creates a new instance ofAadAuthorizationServerEndpoints.- Parameters:
baseUri- the base URItenantId- the tenant ID
-
-
Method Detail
-
getBaseUri
public String getBaseUri()
Gets the base URI.- Returns:
- the base URI
-
getAuthorizationEndpoint
public String getAuthorizationEndpoint()
Gets the authorization endpoint.- Returns:
- the authorization endpoint
-
getTokenEndpoint
public String getTokenEndpoint()
Gets the token endpoint.- Returns:
- the token endpoint
-
getJwkSetEndpoint
public String getJwkSetEndpoint()
Gets the JWK set endpoint.- Returns:
- the JWK set endpoint
-
getEndSessionEndpoint
public String getEndSessionEndpoint()
Gets the end session endpoint.- Returns:
- the end session endpoint
-
-