Package ratpack.launch

Examples of ratpack.launch.RatpackMain


  public RatpackMainServerFactory() {
    this(new HashMap<String, String>());
  }

  public RatpackMainServerFactory(Map<String, String> overriddenProperties) {
    this(new RatpackMain(), overriddenProperties);
  }
View Full Code Here


  public RatpackMainApplicationUnderTest() {
    this(Collections.<String, String>emptyMap());
  }

  public RatpackMainApplicationUnderTest(Map<String, String> overriddenProperties) {
    this(new RatpackMain(), overriddenProperties);
  }
View Full Code Here

TOP

Related Classes of ratpack.launch.RatpackMain

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.