Package org.springframework.xd.test.generator

Examples of org.springframework.xd.test.generator.SimpleHttpGenerator


   */
  public SimpleHttpSource(String host, int port) {
    Assert.hasText(host, "host must not be null or empty");
    this.port = port;
    this.host = host;
    httpGenerator = new SimpleHttpGenerator(host, port);
  }
View Full Code Here

TOP

Related Classes of org.springframework.xd.test.generator.SimpleHttpGenerator

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.