Package org.springframework.integration.twitter.outbound

Examples of org.springframework.integration.twitter.outbound.TwitterSearchOutboundGateway


        .get();
  }

  @Bean
  public TwitterSearchOutboundGateway twitterGate() {
    TwitterSearchOutboundGateway gateway = new TwitterSearchOutboundGateway(twitter());
    return gateway;
  }
View Full Code Here


  }

  @Bean
  @ServiceActivator(inputChannel="searchChannel")
  public TwitterSearchOutboundGateway twitterGate() {
    TwitterSearchOutboundGateway gateway = new TwitterSearchOutboundGateway(twitter());
    gateway.setOutputChannel(toJsonChannel());
    return gateway;
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.twitter.outbound.TwitterSearchOutboundGateway

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.