org.springframework.social.security.AuthenticationNameUserIdSource Java Examples

The following examples show how to use org.springframework.social.security.AuthenticationNameUserIdSource. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CustomSocialAutoConfigurerAdapter.java    From codeway_service with GNU General Public License v3.0 4 votes vote down vote up
@Override
public UserIdSource getUserIdSource() {
	return new AuthenticationNameUserIdSource();
}
 
Example #2
Source File: SocialConfig.java    From pre with GNU General Public License v3.0 4 votes vote down vote up
@Override
public UserIdSource getUserIdSource() {
    return new AuthenticationNameUserIdSource();
}
 
Example #3
Source File: CustomSocialAutoConfigurerAdapter.java    From codeway_service with GNU General Public License v3.0 4 votes vote down vote up
@Override
public UserIdSource getUserIdSource() {
	return new AuthenticationNameUserIdSource();
}
 
Example #4
Source File: GoogleConfigurerAdapter.java    From OAuth-2.0-Cookbook with MIT License 4 votes vote down vote up
@Override
public UserIdSource getUserIdSource() {
	return new AuthenticationNameUserIdSource();
}
 
Example #5
Source File: _SocialConfiguration.java    From jhipster-ribbon-hystrix with GNU General Public License v3.0 4 votes vote down vote up
@Override
public UserIdSource getUserIdSource() {
    return new AuthenticationNameUserIdSource();
}
 
Example #6
Source File: SocialConfig.java    From blog-social-login-with-spring-social with Apache License 2.0 4 votes vote down vote up
@Override
public UserIdSource getUserIdSource() {
    return new AuthenticationNameUserIdSource();
}