Package org.springframework.social.connect.mem

Examples of org.springframework.social.connect.mem.InMemoryUsersConnectionRepository


            return new ConnectionFactoryRegistry();
        }

        @Bean
        public InMemoryUsersConnectionRepository inMemoryUsersConnectionRepository(ConnectionFactoryRegistry registry) {
            return new InMemoryUsersConnectionRepository(registry);
        }
View Full Code Here


 
  /**
   * Default implementation of {@link #getUsersConnectionRepository(ConnectionFactoryLocator)} that creates an in-memory repository.
   */
  public UsersConnectionRepository getUsersConnectionRepository(ConnectionFactoryLocator connectionFactoryLocator) {
    return new InMemoryUsersConnectionRepository(connectionFactoryLocator);
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.connect.mem.InMemoryUsersConnectionRepository

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.