in src/main/java/org/apache/sling/repoinit/parser/operations/CreateUser.java [58:72]
protected String getParametersDescription() {
final StringBuilder sb = new StringBuilder(username);
final String forced = isForcedPath() ? "forced " : "";
if (getPath() != null) {
sb.append(" with " + forced + "path ").append(getPath());
}
if (password != null) {
if (passwordEncoding == null) {
sb.append(" (with password)");
} else {
sb.append(" (with encoded password)");
}
}
return sb.toString();
}