From 692bb473fc678b1fc90f13d2d04d6f17bb1103f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 13 Jul 2015 19:32:49 +0300 Subject: [PATCH] Improve CLI create option descriptions --- .../org/apache/activemq/artemis/cli/commands/Create.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java index a3f1bada90..ca7484c10c 100644 --- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java +++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java @@ -98,7 +98,7 @@ public class Create extends InputAbstract @Option(name = "--home", description = "Directory where ActiveMQ Artemis is installed") File home; - @Option(name = "--data", description = "Directory where ActiveMQ Data is used. Path are relative to artemis.instance") + @Option(name = "--data", description = "Directory where ActiveMQ Data is used. Paths are relative to artemis.instance") String data = "./data"; @Option(name = "--clustered", description = "Enable clustering") @@ -128,10 +128,10 @@ public class Create extends InputAbstract @Option(name = "--java-options", description = "Extra java options to be passed to the profile") String javaOptions = ""; - @Option(name = "--allow-anonymous", description = "Enables anonymous configuration on security (Default: input)") + @Option(name = "--allow-anonymous", description = "Enables anonymous configuration on security, opposite of --require-login (Default: input)") Boolean allowAnonymous = null; - @Option(name = "--require-login", description = "This will configure security to require user / password. Compliments --allow-anonymous") + @Option(name = "--require-login", description = "This will configure security to require user / password, opposite of --allow-anonymous") Boolean requireLogin = null; @Option(name = "--user", description = "The username (Default: input)")