Examples of ConnectionFactoryRegistry


Examples of org.springframework.social.connect.support.ConnectionFactoryRegistry

   * When a new provider is added to the app, register its {@link ConnectionFactory} here.
   * @see FacebookConnectionFactory
   */
  @Bean
  public ConnectionFactoryLocator connectionFactoryLocator() {
    ConnectionFactoryRegistry registry = new ConnectionFactoryRegistry();
    registry.addConnectionFactory(new FacebookConnectionFactory(facebookClientId, facebookClientSecret));
    return registry;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.