public String usedOptionsSummary()

in hawtio-embedded/src/main/java/io/hawt/embedded/Options.java [198:233]


    public String usedOptionsSummary() {
        StringBuilder sb = new StringBuilder();
        sb.append("Using options [");
        if (war != null) {
            sb.append("\n\twar=").append(war);
        }
        if (warLocation != null) {
            sb.append("\n\twarLocation=").append(warLocation);
        }
        if (contextPath != null) {
            sb.append("\n\tcontextPath=").append(contextPath);
        }
        if (host != null) {
            sb.append("\n\thost=").append(host);
        }
        if (port != null) {
            sb.append("\n\tport=").append(port);
        }
        if (extraClassPath != null) {
            sb.append("\n\textraClassPath=").append(extraClassPath);
        }
        if (plugins != null) {
            sb.append("\n\tplugins=").append(plugins);
        }
        if (keyStore != null) {
            sb.append("\n\tkeyStore=").append(keyStore);
        }
        if (keyStorePass != null) {
            sb.append("\n\tkeyStore=").append(keyStorePass);
        }
        sb.append("\n\topenUrl=").append(openUrl);
        sb.append("\n\tjointServerThread=").append(jointServerThread);
        sb.append("\n\thelp=").append(help);
        sb.append("]");
        return sb.toString();
    }