protected String getParametersDescription()

in src/main/java/org/apache/sling/repoinit/parser/operations/CreateServiceUser.java [40:50]


    protected String getParametersDescription() {
        final StringBuilder sb = new StringBuilder();
        sb.append(super.getParametersDescription());

        final String forced = isForcedPath() ? "forced " : "";
        if (getPath() != null) {
            sb.append(" with " + forced + "path ").append(getPath());
        }

        return sb.toString();
    }