com.wadpam.oauth2.service.OAuth2UserService 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 com.wadpam.open.security.SecurityDetailsService;
/**
*
* @author sosandstrom
*/
public interface OAuth2UserService extends SecurityDetailsService {
/**
* Creates a new user based on Connection details
* @param email
* @param firstName
* @param lastName
* @param name
* @param providerId
* @param providerUserId
* @return the ID for the created user
*/
String createUser(String email, String firstName, String lastName,
String name, String providerId, String providerUserId, String domain);
}