Package org.springframework.social.security

Examples of org.springframework.social.security.AuthenticationNameUserIdSource


     * The UserIdSource determines the account ID of the user. The example application
     * uses the username as the account ID.
     */
    @Override
    public UserIdSource getUserIdSource() {
        return new AuthenticationNameUserIdSource();
    }
View Full Code Here


    return new DisconnectController(usersConnectionRepository, environment.getProperty("facebook.clientSecret"));
  }
 
  @Bean
  public UserIdSource userIdSource() {
    return new AuthenticationNameUserIdSource();
  }
View Full Code Here

    return new SimpleSocialUsersDetailService(userDetailsService());
  }
 
  @Bean
  public UserIdSource userIdSource() {
    return new AuthenticationNameUserIdSource();
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.security.AuthenticationNameUserIdSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.