Package org.springframework.social.connect.web

Examples of org.springframework.social.connect.web.GenericConnectionStatusView


    }

    @Bean(name = { "connect/linkedinConnect", "connect/linkedinConnected" })
    @ConditionalOnProperty(prefix = "spring.social", name = "auto-connection-views")
    public View linkedInConnectView() {
      return new GenericConnectionStatusView("linkedin", "LinkedIn");
    }
View Full Code Here


    }

    @Bean(name = { "connect/facebookConnect", "connect/facebookConnected" })
    @ConditionalOnProperty(prefix = "spring.social", name = "auto-connection-views")
    public View facebookConnectView() {
      return new GenericConnectionStatusView("facebook", "Facebook");
    }
View Full Code Here

    }

    @Bean(name = { "connect/twitterConnect", "connect/twitterConnected" })
    @ConditionalOnProperty(prefix = "spring.social", name = "auto-connection-views")
    public View twitterConnectView() {
      return new GenericConnectionStatusView("twitter", "Twitter");
    }
View Full Code Here

TOP

Related Classes of org.springframework.social.connect.web.GenericConnectionStatusView

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.