params.put(CommandLineInterpreter.OPTION_TLSPORT, tlsPortString);
params.put(CommandLineInterpreter.OPTION_ADMINPORT, adminPortString);
params.put(CommandLineInterpreter.OPTION_ADDRESS, addressToBind);
final String[] args = new String[]{"-m", "-l", addressToBind, "-s", clientPortString, "-a", adminPortString, "-t", tlsPortString, "-d", yamlConfigurationFilename};
new CommandLineInterpreter().parseCommandLine(args);
stubbyManager = new StubbyManagerFactory().construct(yamlConfigurationFilename, params);
stubbyManager.startJetty();
}