org.springframework.social.connect.ConnectionSignUp Java Examples
The following examples show how to use
org.springframework.social.connect.ConnectionSignUp.
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: SocialConfig.java From JiwhizBlogWeb with Apache License 2.0 | 4 votes |
@Bean public ConnectionSignUp autoConnectionSignUp() { return new AutoConnectionSignUp(userAccountService, messageSender); }
Example #2
Source File: MongoUsersConnectionRepositoryImpl.java From JiwhizBlogWeb with Apache License 2.0 | 2 votes |
/** * The command to execute to create a new local user profile in the event no user id could be mapped to a connection. * Allows for implicitly creating a user profile from connection data during a provider sign-in attempt. * Defaults to null, indicating explicit sign-up will be required to complete the provider sign-in attempt. * @see #findUserIdsWithConnection(Connection) */ public void setConnectionSignUp(ConnectionSignUp connectionSignUp) { this.connectionSignUp = connectionSignUp; }