final Map<String, String> params = new HashMap<String, String>();
params.put(CommandLineInterpreter.OPTION_CLIENTPORT, String.format("%s", clientPort));
params.put(CommandLineInterpreter.OPTION_SSLPORT, String.format("%s", sslPort));
params.put(CommandLineInterpreter.OPTION_ADMINPORT, String.format("%s", adminPort));
jettyManager = new JettyManagerFactory().construct(yamlConfigurationFilename, params);
jettyManager.startJetty();
}