From 569508ef02d5acbffbdab938cedae07b1cfed67d Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Thu, 11 Aug 2016 16:27:34 -0600 Subject: [PATCH] comments --- .../org/springframework/cloud/launcher/cli/LauncherCommand.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-cloud-launcher/spring-cloud-launcher-cli/src/main/java/org/springframework/cloud/launcher/cli/LauncherCommand.java b/spring-cloud-launcher/spring-cloud-launcher-cli/src/main/java/org/springframework/cloud/launcher/cli/LauncherCommand.java index cf7085f..91efd0c 100644 --- a/spring-cloud-launcher/spring-cloud-launcher-cli/src/main/java/org/springframework/cloud/launcher/cli/LauncherCommand.java +++ b/spring-cloud-launcher/spring-cloud-launcher-cli/src/main/java/org/springframework/cloud/launcher/cli/LauncherCommand.java @@ -81,6 +81,8 @@ public class LauncherCommand extends OptionParsingCommand { @Override protected void options() { + // if the classloader is loaded here, we could load a collection of interfaces that + // can create options and then populate the args[] that is sent to the DeployerThread this.debugOption = option(Arrays.asList("debug", "d"), "Debug logging for the deployer"); this.listOption = option(Arrays.asList("list", "l"), "List the deployables (don't launch anything)"); this.gitUriOption = getParser().acceptsAll(Arrays.asList("git-uri", "g"), "URI for git repository for use with configserver").withRequiredArg();