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

com.wadpam.oauth2.service.OAuth2UserService Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy