ARTEMIS-133 adding property to force security on the CLI

https://issues.apache.org/jira/browse/ARTEMIS-133

This is just adding a property so it would be
This commit is contained in:
Clebert Suconic 2015-06-04 10:04:43 -04:00
parent a4a3a4070d
commit 8edcf7c5b2
1 changed files with 24 additions and 1 deletions

View File

@ -127,6 +127,9 @@ public class Create extends InputAbstract
@Option(name = "--allow-anonymous", description = "Enables anonymous configuration on security (Default: input)")
Boolean allowAnonymous = null;
@Option(name = "--require-login", description = "This will configure security to require user / password. Compliment --allow-anonymous")
Boolean requireLogin = null;
@Option(name = "--user", description = "The username (Default: input)")
String user;
@ -323,7 +326,7 @@ public class Create extends InputAbstract
{
if (allowAnonymous == null)
{
String value = input("--allow-anonymous", "Allow anonymous access? (Y/N):", "Y");
String value = input("--allow-anonymous | --require-login", "Allow anonymous access? (Y/N):", "Y");
allowAnonymous = Boolean.valueOf(value.toLowerCase().equals("y"));
}
return allowAnonymous.booleanValue();
@ -334,6 +337,20 @@ public class Create extends InputAbstract
this.allowAnonymous = Boolean.valueOf(allowGuest);
}
public Boolean getRequireLogin()
{
if (requireLogin == null)
{
requireLogin = !isAllowAnonymous();
}
return requireLogin;
}
public void setRequireLogin(Boolean requireLogin)
{
this.requireLogin = requireLogin;
}
public String getPassword()
{
@ -407,6 +424,12 @@ public class Create extends InputAbstract
IS_WINDOWS = System.getProperty("os.name").toLowerCase().trim().startsWith("win");
IS_CYGWIN = IS_WINDOWS && "cygwin".equals(System.getenv("OSTYPE"));
// requireLogin should set alloAnonymous=false, to avoid user's questions
if (requireLogin != null && requireLogin.booleanValue())
{
allowAnonymous = Boolean.FALSE;
}
context.out.println(String.format("Creating ActiveMQ Artemis instance at: %s", directory.getCanonicalPath()));
HashMap<String, String> filters = new HashMap<String, String>();