
com.wadpam.oauth2.service.ProviderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-client Show documentation
Show all versions of oauth2-client Show documentation
Implements OAuth2 authentication on top of Open-Server security
The newest version!
/*
* INSERT COPYRIGHT HERE
*/
package com.wadpam.oauth2.service;
import org.springframework.social.connect.ConnectionFactory;
/**
*
* @author sosandstrom
*/
public interface ProviderFactory {
boolean supports(String id);
ConnectionFactory> createFactory(String id, String clientId, String clientSecret, String baseUrl);
String getUserId(String access_token);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy