This class is designed to be subclassable.
32333435363738
public RatpackMainServerFactory() { this(new HashMap<String, String>()); } public RatpackMainServerFactory(Map<String, String> overriddenProperties) { this(new RatpackMain(), overriddenProperties); }
26272829303132
public RatpackMainApplicationUnderTest() { this(Collections.<String, String>emptyMap()); } public RatpackMainApplicationUnderTest(Map<String, String> overriddenProperties) { this(new RatpackMain(), overriddenProperties); }