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

org.springframework.social.partnercenter.security.AbstractAzureADServiceProvider Maven / Gradle / Ivy

Go to download

A provider extension for Spring Social to enable connectivity with Microsoft and an API binding for Microsoft's Partner Center API.

There is a newer version: 10.11.0
Show newest version
package org.springframework.social.partnercenter.security;

import org.springframework.social.oauth2.OAuth2ServiceProvider;

public abstract class AbstractAzureADServiceProvider implements AzureADServiceProvider {

	private final AzureADAuthOperations azureADAuthOperations;

	/**
	 * Create a new {@link OAuth2ServiceProvider}.
	 * @param azureADAuthOperations the OAuth2Operations template for conducting the OAuth 2 flow with the provider.
	 */
	public AbstractAzureADServiceProvider(AzureADAuthOperations azureADAuthOperations) {
		this.azureADAuthOperations = azureADAuthOperations;
	}

	public AzureADAuthOperations getAzureADAuthOperations() {
		return azureADAuthOperations;
	}

	public abstract T getApi(String accessToken);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy