private final JarExecutor executor;
public StartRunnableJarPhase(final ServerSetup owner, String id, String description, Properties config) throws ExecutorException {
this.id = id;
this.description = description;
executor = new JarExecutor(config);
String hostname = config.getProperty(TEST_SERVER_HOSTNAME);
if(hostname == null) {
hostname = "localhost";
}