Package com.springsource.greenhouse.connect

Examples of com.springsource.greenhouse.connect.FacebookConnectInterceptor


   * @param profilePictureService needed by the {@link FacebookConnectInterceptor} to make the user's Facebook profile picture their Greenhouse profile picture.
   */
  @Bean
  public ConnectController connectController(ProfilePictureService profilePictureService) {
    ConnectController controller = new ConnectController(connectionFactoryLocator(), connectionRepository());
    controller.addInterceptor(new FacebookConnectInterceptor(profilePictureService));
    controller.addInterceptor(new TwitterConnectInterceptor());
    return controller;
  }
View Full Code Here

TOP

Related Classes of com.springsource.greenhouse.connect.FacebookConnectInterceptor

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.