Package com.azure.spring.aad
Class AADAuthorizationServerEndpoints
- java.lang.Object
-
- com.azure.spring.aad.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 StringauthorizationEndpoint()Gets the authorization endpoint.StringendSessionEndpoint()Gets the end session endpoint.StringgetBaseUri()Gets the base URI.StringjwkSetEndpoint()Gets the JWK set endpoint.StringtokenEndpoint()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
-
authorizationEndpoint
public String authorizationEndpoint()
Gets the authorization endpoint.- Returns:
- the authorization endpoint
-
tokenEndpoint
public String tokenEndpoint()
Gets the token endpoint.- Returns:
- the token endpoint
-
jwkSetEndpoint
public String jwkSetEndpoint()
Gets the JWK set endpoint.- Returns:
- the JWK set endpoint
-
endSessionEndpoint
public String endSessionEndpoint()
Gets the end session endpoint.- Returns:
- the end session endpoint
-
-