Package org.springframework.web.context.support

Examples of org.springframework.web.context.support.ServletContextAttributeExporter


        googleClient(), gitHubClient(), twitterClient());
  }
 
  @Bean
  public ServletContextAttributeExporter servletContextAttributeExporter() {
    ServletContextAttributeExporter exporter = new ServletContextAttributeExporter();
    exporter.setAttributes(
        ImmutableMap.<String, Object>builder()
        .put(Pac4jClient.GOOGLE.getClientKey(), googleClient())
        .put(Pac4jClient.GITHUB.getClientKey(), gitHubClient())
        .put(Pac4jClient.TWITTER.getClientKey(), twitterClient())
        .build()
View Full Code Here

TOP

Related Classes of org.springframework.web.context.support.ServletContextAttributeExporter

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.