Package org.springframework.social.movies.netflix.connect

Examples of org.springframework.social.movies.netflix.connect.NetFlixConnectionFactory


  @Bean
  @Scope(value="singleton", proxyMode=ScopedProxyMode.INTERFACES)
  public ConnectionFactoryLocator connectionFactoryLocator() {
    ConnectionFactoryRegistry registry = new ConnectionFactoryRegistry();
    registry.addConnectionFactory(new NetFlixConnectionFactory(environment.getProperty("netflix.consumerKey"),
        environment.getProperty("netflix.consumerSecret")));
    return registry;
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.movies.netflix.connect.NetFlixConnectionFactory

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.