Package org.springframework.social.facebook.web

Examples of org.springframework.social.facebook.web.DisconnectController


    return new ProviderSignInController(connectionFactoryLocator(), usersConnectionRepository(), new SimpleSignInAdapter(requestCache));
  }
 
  @Bean
  public DisconnectController disconnectController() {
    return new DisconnectController(usersConnectionRepository(), environment.getProperty("facebook.clientSecret"));
  }
View Full Code Here


    return connectController;
  }
 
  @Bean
  public DisconnectController disconnectController() {
    return new DisconnectController(usersConnectionRepository, environment.getProperty("facebook.clientSecret"));
  }
View Full Code Here

    return connectController;
  }
 
  @Bean
  public DisconnectController disconnectController(UsersConnectionRepository usersConnectionRepository, Environment environment) {
    return new DisconnectController(usersConnectionRepository, environment.getProperty("facebook.appSecret"));
  }
View Full Code Here

    return new ProviderSignInController(connectionFactoryLocator, usersConnectionRepository, new SimpleSignInAdapter(new HttpSessionRequestCache()));
  }
 
  @Bean
  public DisconnectController disconnectController(UsersConnectionRepository usersConnectionRepository, Environment env) {
    return new DisconnectController(usersConnectionRepository, env.getProperty("facebook.appSecret"));
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.facebook.web.DisconnectController

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.