protected String getParametersDescription()

in src/main/java/org/apache/sling/repoinit/parser/operations/CreateGroup.java [55:62]


    protected String getParametersDescription() {
        final StringBuilder sb = new StringBuilder(groupname);
        final String forced = isForcedPath() ? "forced " : "";
        if (getPath() != null) {
            sb.append(" with " + forced + "path ").append(getPath());
        }
        return sb.toString();
    }